diff options
author | 2013-12-20 02:04:08 +0000 | |
---|---|---|
committer | 2013-12-20 02:04:08 +0000 | |
commit | 6e324f49479260f2fc95ef7c90e7619c112916c8 (patch) | |
tree | 5d10f81e83fc9001da1aacfb771a7ad3ff9514b5 /sys/netinet6/raw_ip6.c | |
parent | delete 4 includes we do not need (diff) | |
download | wireguard-openbsd-6e324f49479260f2fc95ef7c90e7619c112916c8.tar.xz wireguard-openbsd-6e324f49479260f2fc95ef7c90e7619c112916c8.zip |
Switch inpt_queue from CIRCLEQ to TAILQ. Thus ending use of CIRCLEQ
in the base. Ports fixes to follow shortly for the two ports (gkrellm
and net-snmp) affected.
ok zhuk@ millert@
Diffstat (limited to 'sys/netinet6/raw_ip6.c')
-rw-r--r-- | sys/netinet6/raw_ip6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c index a0fc81ca57a..80f8e9af9f3 100644 --- a/sys/netinet6/raw_ip6.c +++ b/sys/netinet6/raw_ip6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raw_ip6.c,v 1.62 2013/11/22 07:59:09 mpi Exp $ */ +/* $OpenBSD: raw_ip6.c,v 1.63 2013/12/20 02:04:09 krw Exp $ */ /* $KAME: raw_ip6.c,v 1.69 2001/03/04 15:55:44 itojun Exp $ */ /* @@ -146,7 +146,7 @@ rip6_input(struct mbuf **mp, int *offp, int proto) /* KAME hack: recover scopeid */ (void)in6_recoverscope(&rip6src, &ip6->ip6_src, m->m_pkthdr.rcvif); - CIRCLEQ_FOREACH(in6p, &rawin6pcbtable.inpt_queue, inp_queue) { + TAILQ_FOREACH(in6p, &rawin6pcbtable.inpt_queue, inp_queue) { if (in6p->inp_socket->so_state & SS_CANTRCVMORE) continue; if (!(in6p->inp_flags & INP_IPV6)) |