From: paul Date: Sun, 18 May 2003 15:22:55 +0000 (+0000) Subject: From: Hasso Tepper X-Git-Tag: frr-2.0-rc1~4066 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=551a8979254b5fc797765d18b4c678fb7419e702;p=matthieu%2Ffrr.git From: Hasso Tepper Subject: [zebra 19093] [PATCH] Two more fixes Show NSSA LSA route info in "show ip ospf database" output --- diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 08bad00565..1109eb0a9e 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,11 +1,16 @@ -2003-04-23 Hasso Tepper +2003-05-18 Hasso Tepper - * ospf_vty.c: fix "router xxx" node commands in vtysh + * ospf_vty.c: Show NSSA LSA route info in "show ip ospf database" + output 2003-05-16 Hasso Tepper * ospf_lsa.c: Fix handling of NSSA +2003-04-23 Hasso Tepper + + * ospf_vty.c: fix "router xxx" node commands in vtysh + 2003-04-19 Hasso Tepper * {ospf_abr,ospfd}.c: area id's DECIMAL -> ADDRESS diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index aa41d79ce2..482ef6fcd2 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -3100,6 +3100,9 @@ show_lsa_summary (struct vty *vty, struct ospf_lsa *lsa, int self) vty_out (vty, " %s/%d", inet_ntoa (p.prefix), p.prefixlen); break; case OSPF_AS_EXTERNAL_LSA: +#ifdef HAVE_NSSA + case OSPF_AS_NSSA_LSA: +#endif /* HAVE_NSSA */ asel = (struct as_external_lsa *) lsa->data; p.family = AF_INET;