diff options
| author | hasso <hasso> | 2004-10-08 12:04:21 +0000 | 
|---|---|---|
| committer | hasso <hasso> | 2004-10-08 12:04:21 +0000 | 
| commit | ef1bbf5ca41401ee4135a67e1a4d4465ff09b524 (patch) | |
| tree | f7766d514316862c1c9ba5923e042a1132a52e36 /ospf6d/ospf6d.c | |
| parent | eb1ce6059a00f3f0dd92c965aa5982907b54c00d (diff) | |
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 e94a036b17..695e8eca34 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 ();  | 
