mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 04:36:45 +00:00
2005-04-10 Paul Jakma <paul@dishone.st>
* if_ioctl_solaris.c: (if_lookup_linklocal) fix order of args in ALL_LIST_ELEMENTS_RO macro.
This commit is contained in:
parent
c7959916ff
commit
cf460ef947
@ -1,3 +1,8 @@
|
||||
2005-04-10 Paul Jakma <paul@dishone.st>
|
||||
|
||||
* if_ioctl_solaris.c: (if_lookup_linklocal) fix order of args
|
||||
in ALL_LIST_ELEMENTS_RO macro.
|
||||
|
||||
2005-04-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
|
||||
|
||||
* zserv.c (zebra_client_read): Fix bug: first read attempt should
|
||||
|
@ -344,7 +344,7 @@ if_lookup_linklocal (struct interface *ifp)
|
||||
if (ifp == NULL)
|
||||
return NULL;
|
||||
|
||||
for (ALL_LIST_ELEMENTS_RO(ifp->connected, ifc, node))
|
||||
for (ALL_LIST_ELEMENTS_RO(ifp->connected, node, ifc))
|
||||
{
|
||||
if ((ifc->address->family == AF_INET6) &&
|
||||
(IN6_IS_ADDR_LINKLOCAL (&ifc->address->u.prefix6)))
|
||||
|
Loading…
Reference in New Issue
Block a user