]> git.puffer.fish Git - matthieu/frr.git/commitdiff
* isis_adjacency.c: Fix typo introduced with listloop cleanup.
authorhasso <hasso>
Tue, 12 Apr 2005 14:48:19 +0000 (14:48 +0000)
committerhasso <hasso>
Tue, 12 Apr 2005 14:48:19 +0000 (14:48 +0000)
isisd/ChangeLog
isisd/isis_adjacency.c

index e4792d8966af4e067f420410d1f71e19bac251c7..c8e363fb52dcf18dd9ec707ebc33f648ea79ab6e 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-12 Hasso Tepper <hasso at quagga.net>
+
+       * isis_adjacency.c: Fix typo introduced with listloop cleanup.
+
 2005-04-11 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
 
        * isis_zebra.h (isis_zebra_finish): Remove declaration of unused
index 0a48c070dd7e31053fa00f5bccac8dba2ac8c89d..af4e963b2e414daa00ca950d99beb0bcf00f2434 100644 (file)
@@ -395,7 +395,7 @@ isis_adj_print_vty2 (struct isis_adjacency *adj, struct vty *vty, char detail)
       if (adj->ipv6_addrs && listcount (adj->ipv6_addrs) > 0)
        {
          vty_out (vty, "    IPv6 Addresses:%s", VTY_NEWLINE);
-         for (ALL_LIST_ELEMENTS_RO (adj->ipv4_addrs, node, ipv6_addr))
+         for (ALL_LIST_ELEMENTS_RO (adj->ipv6_addrs, node, ipv6_addr))
            {
              inet_ntop (AF_INET6, ipv6_addr, (char *)ip6, INET6_ADDRSTRLEN);
              vty_out (vty, "      %s%s", ip6, VTY_NEWLINE);