diff options
author | hasso <hasso> | 2004-10-08 14:04:21 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-10-08 14:04:21 +0200 |
commit | ef1bbf5ca41401ee4135a67e1a4d4465ff09b524 (patch) | |
tree | f7766d514316862c1c9ba5923e042a1132a52e36 /ospf6d/ospf6d.c | |
parent | Compiler warnings fixes round 1. (diff) | |
download | frr-ef1bbf5ca41401ee4135a67e1a4d4465ff09b524.tar.xz frr-ef1bbf5ca41401ee4135a67e1a4d4465ff09b524.zip |
Merge svn revisions 1065 and 1066 from Zebra CVS.
Diffstat (limited to 'ospf6d/ospf6d.c')
-rw-r--r-- | ospf6d/ospf6d.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c index e94a036b1..695e8eca3 100644 --- a/ospf6d/ospf6d.c +++ b/ospf6d/ospf6d.c @@ -44,6 +44,10 @@ #include "ospf6_flood.h" #include "ospf6d.h" +#ifdef HAVE_SNMP +#include "ospf6_snmp.h" +#endif /*HAVE_SNMP*/ + char ospf6_daemon_version[] = OSPF6_DAEMON_VERSION; void @@ -1812,6 +1816,10 @@ ospf6_init () ospf6_asbr_init (); ospf6_abr_init (); +#ifdef HAVE_SNMP + ospf6_snmp_init (); +#endif /*HAVE_SNMP*/ + install_node (&debug_node, config_write_ospf6_debug); install_element_ospf6_debug_message (); |