diff options
author | paul <paul> | 2004-09-24 08:24:42 +0000 |
---|---|---|
committer | paul <paul> | 2004-09-24 08:24:42 +0000 |
commit | 9353eef820b201ab8eac87c2da8af24211152f58 (patch) | |
tree | 9828b3606ade40c79c4b23e667d00e428a017d1c /zebra/if_ioctl_solaris.c | |
parent | 213ce2af15e1b35c21d6479d408bdd143ef31062 (diff) | |
download | quagga-9353eef820b201ab8eac87c2da8af24211152f58.tar.bz2 quagga-9353eef820b201ab8eac87c2da8af24211152f58.tar.xz |
2004-09-24 Paul Jakma <paul@dishone.st>
* irdp_{interface,main}.c: lists typedef removal cleanup.
update some list loops to LIST_LOOP. some miscellaneous style
and indent fixups.
(no_ip_irdp_address_preference_cmd) Fix delete of referenced node
in loop.
* irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
to pointer.
* if_ioctl{,_solaris}.c: lists typedef removal cleanup.
update some list loops to LIST_LOOP.
Diffstat (limited to 'zebra/if_ioctl_solaris.c')
-rw-r--r-- | zebra/if_ioctl_solaris.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/zebra/if_ioctl_solaris.c b/zebra/if_ioctl_solaris.c index c05883c6..4f8284a3 100644 --- a/zebra/if_ioctl_solaris.c +++ b/zebra/if_ioctl_solaris.c @@ -334,16 +334,14 @@ struct connected * if_lookup_linklocal (struct interface *ifp) { #ifdef HAVE_IPV6 - listnode node; + struct listnode *node; struct connected *ifc; if (ifp == NULL) return NULL; - for (node = listhead (ifp->connected); node; node = nextnode (node)) + LIST_LOOP (ifp->connected, ifc, node) { - ifc = getdata (node); - if ((ifc->address->family == AF_INET6) && (IN6_IS_ADDR_LINKLOCAL (&ifc->address->u.prefix6))) return ifc; |