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/dev/sk | |
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/dev/sk')
-rw-r--r-- | sys/dev/sk/if_sk.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/sk/if_sk.c b/sys/dev/sk/if_sk.c index f09df99..a0dc45a 100644 --- a/sys/dev/sk/if_sk.c +++ b/sys/dev/sk/if_sk.c @@ -558,8 +558,7 @@ static void sk_setmulti(sc_if) } 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; } |