diff options
| -rw-r--r-- | ospfd/ChangeLog | 9 | ||||
| -rw-r--r-- | ospfd/ospf_vty.c | 3 | 
2 files changed, 10 insertions, 2 deletions
| diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 08bad005..1109eb0a 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,11 +1,16 @@ -2003-04-23 Hasso Tepper <hasso@estpak.ee> +2003-05-18 Hasso Tepper <hasso@estpak.ee> -	* 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 <hasso@estpak.ee>  	* ospf_lsa.c: Fix handling of NSSA +2003-04-23 Hasso Tepper <hasso@estpak.ee> + +	* ospf_vty.c: fix "router xxx" node commands in vtysh +  2003-04-19 Hasso Tepper <hasso@estpak.ee>  	* {ospf_abr,ospfd}.c: area id's DECIMAL -> ADDRESS diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index aa41d79c..482ef6fc 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; | 
