diff options
author | Chris Hall <GMCH@hestia.halldom.com> | 2010-04-17 16:50:23 +0100 |
---|---|---|
committer | Chris Hall <GMCH@hestia.halldom.com> | 2010-04-17 16:50:23 +0100 |
commit | 31d9b6c31d949bf0e884d8a6e02939345b9816e1 (patch) | |
tree | 7a6588c12a16f99b512232b77e86118837c646c4 /zebra/if_sysctl.c | |
parent | 825f338d44433fc2d351c08d41272f52a15329db (diff) | |
download | quagga-31d9b6c31d949bf0e884d8a6e02939345b9816e1.tar.bz2 quagga-31d9b6c31d949bf0e884d8a6e02939345b9816e1.tar.xz |
Bring up to date with 0.99.16 release
This brings this branch up to date with 0.99.16, EXCEPT for the
change to bgpd to use monotonic clock for timing updates.
There are places where bgpd expects to find the actual time that
things happened... so this change is not though to be complete.
Further tidying in zebra, for FreeBSD.
Diffstat (limited to 'zebra/if_sysctl.c')
-rw-r--r-- | zebra/if_sysctl.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/zebra/if_sysctl.c b/zebra/if_sysctl.c index 8c78daa6..c7fecb77 100644 --- a/zebra/if_sysctl.c +++ b/zebra/if_sysctl.c @@ -35,6 +35,16 @@ #include "zebra/rt.h" #include "zebra/kernel_socket.h" +#include "zebra/interface.h" + +/* zebra/interface.h declares some extern functions for if_sysctl.c + * + * The following are not declared if HAVE_NET_RT_IFLIST is not defined. + * So declare them here if required, in order to suppress warnings. + */ +#ifndef HAVE_NET_RT_IFLIST +extern void ifstat_update_sysctl (void); +#endif void ifstat_update_sysctl (void) |