Use the elegant TAILQ_FOREACH() in place of a hand-rolled for() loop.

This commit is contained in:
Yaroslav Tykhiy 2006-06-29 15:37:39 +00:00
parent fe95c76276
commit 576cdf4352
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160029

View File

@ -1047,9 +1047,7 @@ bootpc_fakeup_interface(struct bootpc_ifcontext *ifctx,
/* Get HW address */
sdl = NULL;
for (ifa = TAILQ_FIRST(&ifctx->ifp->if_addrhead);
ifa != NULL;
ifa = TAILQ_NEXT(ifa, ifa_link))
TAILQ_FOREACH(ifa, &ifctx->ifp->if_addrhead, ifa_link)
if (ifa->ifa_addr->sa_family == AF_LINK &&
(sdl = ((struct sockaddr_dl *) ifa->ifa_addr)) != NULL &&
sdl->sdl_type == IFT_ETHER)