Use TAILQ_FOREACH in the __FreeBSD__ case, too.
Funnily enough, rev. 1.15 changed the __Net and __Open cases only.
This commit is contained in:
parent
06dc090fe0
commit
e54e7d6dae
@ -383,8 +383,7 @@ atm_ifattach(struct ifnet *ifp)
|
||||
#if defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list)
|
||||
#elif defined(__FreeBSD__) && (__FreeBSD__ > 2)
|
||||
for (ifa = TAILQ_FIRST(&ifp->if_addrhead); ifa;
|
||||
ifa = TAILQ_NEXT(ifa, ifa_link))
|
||||
TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link)
|
||||
#elif defined(__FreeBSD__) || defined(__bsdi__)
|
||||
for (ifa = ifp->if_addrlist; ifa; ifa = ifa->ifa_next)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user