diff options
author | hasso <hasso> | 2005-04-12 14:48:19 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-04-12 14:48:19 +0000 |
commit | 5d6e26910b6790e7ea759893c16e9f0e380fcc1e (patch) | |
tree | 448de93ef1b876b3460c6a18f7402775da9f7e12 /isisd | |
parent | c75494ca286c23d065f6a1ea147016b934ef9646 (diff) |
* isis_adjacency.c: Fix typo introduced with listloop cleanup.
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/ChangeLog | 4 | ||||
-rw-r--r-- | isisd/isis_adjacency.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/isisd/ChangeLog b/isisd/ChangeLog index e4792d89..c8e363fb 100644 --- a/isisd/ChangeLog +++ b/isisd/ChangeLog @@ -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 diff --git a/isisd/isis_adjacency.c b/isisd/isis_adjacency.c index 0a48c070..af4e963b 100644 --- a/isisd/isis_adjacency.c +++ b/isisd/isis_adjacency.c @@ -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); |