diff options
author | Chris Caputo <ccaputo@alt.net> | 2009-05-06 15:16:12 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-06 15:28:34 -0700 |
commit | df1eb9288e93b9f24dc5e11e85d79b860eadf61c (patch) | |
tree | bb743257c76b044636e5acf948829e117ffea9de /ospf6d | |
parent | bee9bd8f12f377df2412e811480a53bc69070369 (diff) | |
download | quagga-df1eb9288e93b9f24dc5e11e85d79b860eadf61c.tar.bz2 quagga-df1eb9288e93b9f24dc5e11e85d79b860eadf61c.tar.xz |
Compiler warning fixes for when --enable-snmp is configured.
Compiled on 32-bit and 64-bit linux gcc 4.1.2 platforms.
No run-time testing on 32-bit and limited run-time testing on 64-bit.
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6_snmp.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ospf6d/ospf6_snmp.c b/ospf6d/ospf6_snmp.c index 8d9842ce..3cb26d0c 100644 --- a/ospf6d/ospf6_snmp.c +++ b/ospf6d/ospf6_snmp.c @@ -128,9 +128,12 @@ oid ospfv3_oid [] = { OSPFv3MIB }; static struct in_addr ospf6_empty_id = {0}; /* Hook functions. */ -static u_char *ospfv3GeneralGroup (); -static u_char *ospfv3AreaEntry (); -static u_char *ospfv3AreaLsdbEntry (); +static u_char *ospfv3GeneralGroup (struct variable *, oid *, size_t *, + int, size_t *, WriteMethod **); +static u_char *ospfv3AreaEntry (struct variable *, oid *, size_t *, + int, size_t *, WriteMethod **); +static u_char *ospfv3AreaLsdbEntry (struct variable *, oid *, size_t *, + int, size_t *, WriteMethod **); struct variable ospfv3_variables[] = { |