diff options
author | phk <phk@FreeBSD.org> | 2001-02-03 16:29:10 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2001-02-03 16:29:10 +0000 |
commit | 408a00d7df90965db4085ccfd67356bf3f7c38ee (patch) | |
tree | 4ad9050dfc339204ebef2be568d2128e1bbf4da8 /sys/pci/if_tl.c | |
parent | 2ef21ddcb983700a744a68bdc09d4328d1af0d71 (diff) | |
download | FreeBSD-src-408a00d7df90965db4085ccfd67356bf3f7c38ee.zip FreeBSD-src-408a00d7df90965db4085ccfd67356bf3f7c38ee.tar.gz |
Use LIST_FOREACH() to traverse ifp->if_multiaddrs list, instead of
<sys/queue.h> implementation details.
Created with: /usr/sbin/sed
Reviewed with: /sbin/md5
Diffstat (limited to 'sys/pci/if_tl.c')
-rw-r--r-- | sys/pci/if_tl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/pci/if_tl.c b/sys/pci/if_tl.c index ccc7069..b4c576b 100644 --- a/sys/pci/if_tl.c +++ b/sys/pci/if_tl.c @@ -953,8 +953,7 @@ static void tl_setmulti(sc) } else { i = 1; /* First find the tail of the list. */ - for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL; - ifma = ifma->ifma_link.le_next) { + LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { if (ifma->ifma_link.le_next == NULL) break; } |