diff options
author | hasso <hasso> | 2004-06-20 21:00:27 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-06-20 21:00:27 +0000 |
commit | d5bafb5817f4fbc5fc07360b771d4aeaeab2b3ad (patch) | |
tree | 54b1607077aaf7bfd5d4be35d9aa83b92a1969af /ospfd/ospf_dump.c | |
parent | b8dd3c3f2e49a515c3a9ded5a6ddd856e4f2dff0 (diff) | |
download | quagga-d5bafb5817f4fbc5fc07360b771d4aeaeab2b3ad.tar.bz2 quagga-d5bafb5817f4fbc5fc07360b771d4aeaeab2b3ad.tar.xz |
Remove ifdef's HAVE_NSSA. NSSA support is stable enough.
Diffstat (limited to 'ospfd/ospf_dump.c')
-rw-r--r-- | ospfd/ospf_dump.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ospfd/ospf_dump.c b/ospfd/ospf_dump.c index 9ea67558..c94fda15 100644 --- a/ospfd/ospf_dump.c +++ b/ospfd/ospf_dump.c @@ -562,11 +562,9 @@ ospf_packet_ls_upd_dump (struct stream *s, u_int16_t length) case OSPF_AS_EXTERNAL_LSA: ospf_as_external_lsa_dump (s, length); break; -#ifdef HAVE_NSSA case OSPF_AS_NSSA_LSA: ospf_as_external_lsa_dump (s, length); break; -#endif /* HAVE_NSSA */ #ifdef HAVE_OPAQUE_LSA case OSPF_OPAQUE_LINK_LSA: case OSPF_OPAQUE_AREA_LSA: @@ -1624,9 +1622,7 @@ debug_init () install_element (ENABLE_NODE, &debug_ospf_zebra_sub_cmd); install_element (ENABLE_NODE, &debug_ospf_zebra_cmd); install_element (ENABLE_NODE, &debug_ospf_event_cmd); -#ifdef HAVE_NSSA install_element (ENABLE_NODE, &debug_ospf_nssa_cmd); -#endif /* HAVE_NSSA */ install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_detail_cmd); install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_cmd); install_element (ENABLE_NODE, &no_debug_ospf_packet_all_cmd); @@ -1639,9 +1635,7 @@ debug_init () install_element (ENABLE_NODE, &no_debug_ospf_zebra_sub_cmd); install_element (ENABLE_NODE, &no_debug_ospf_zebra_cmd); install_element (ENABLE_NODE, &no_debug_ospf_event_cmd); -#ifdef HAVE_NSSA install_element (ENABLE_NODE, &no_debug_ospf_nssa_cmd); -#endif /* HAVE_NSSA */ install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_detail_cmd); install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_cmd); @@ -1655,9 +1649,7 @@ debug_init () install_element (CONFIG_NODE, &debug_ospf_zebra_sub_cmd); install_element (CONFIG_NODE, &debug_ospf_zebra_cmd); install_element (CONFIG_NODE, &debug_ospf_event_cmd); -#ifdef HAVE_NSSA install_element (CONFIG_NODE, &debug_ospf_nssa_cmd); -#endif /* HAVE_NSSA */ install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_detail_cmd); install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_cmd); install_element (CONFIG_NODE, &no_debug_ospf_packet_all_cmd); @@ -1670,7 +1662,5 @@ debug_init () install_element (CONFIG_NODE, &no_debug_ospf_zebra_sub_cmd); install_element (CONFIG_NODE, &no_debug_ospf_zebra_cmd); install_element (CONFIG_NODE, &no_debug_ospf_event_cmd); -#ifdef HAVE_NSSA install_element (CONFIG_NODE, &no_debug_ospf_nssa_cmd); -#endif /* HAVE_NSSA */ } |