]> git.puffer.fish Git - matthieu/frr.git/commitdiff
From: Hasso Tepper <hasso@estpak.ee>
authorpaul <paul>
Sun, 18 May 2003 15:22:55 +0000 (15:22 +0000)
committerpaul <paul>
Sun, 18 May 2003 15:22:55 +0000 (15:22 +0000)
Subject: [zebra 19093] [PATCH] Two more fixes

Show NSSA LSA route info in "show ip ospf database" output

ospfd/ChangeLog
ospfd/ospf_vty.c

index 08bad00565b9981aa4116b8fd1b9e721a0db39d1..1109eb0a9ed9e7eda8ed73ddc7733a94195c3a27 100644 (file)
@@ -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
index aa41d79ce2ee822a29fc2cde7b60166a2be202ba..482ef6fcd2604c7c2c98585257849357a732bcb3 100644 (file)
@@ -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;