diff options
author | 2000-06-18 18:00:18 +0000 | |
---|---|---|
committer | 2000-06-18 18:00:18 +0000 | |
commit | ca3072038234b0e3d8148e0da5af61fdb9ad08c8 (patch) | |
tree | e06212e49b553426e8eb797a645f31779d67a3dc | |
parent | Mark kernel threads as system processes. Make ps hide them by default, (diff) | |
download | wireguard-openbsd-ca3072038234b0e3d8148e0da5af61fdb9ad08c8.tar.xz wireguard-openbsd-ca3072038234b0e3d8148e0da5af61fdb9ad08c8.zip |
remove now-unnecessary statement due to "for" logic clarfication.
-rw-r--r-- | sys/netinet6/in6_pcb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet6/in6_pcb.c b/sys/netinet6/in6_pcb.c index 75cbfee4bdd..b00de44a648 100644 --- a/sys/netinet6/in6_pcb.c +++ b/sys/netinet6/in6_pcb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_pcb.c,v 1.17 2000/06/18 17:56:42 itojun Exp $ */ +/* $OpenBSD: in6_pcb.c,v 1.18 2000/06/18 18:00:18 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -629,7 +629,6 @@ in6_pcbnotify(head, dst, fport_arg, la, lport_arg, cmd, notify) (!IN6_IS_ADDR_UNSPECIFIED(&laddr) && !IN6_ARE_ADDR_EQUAL(&inp->inp_laddr6, &laddr)) || (fport && inp->inp_fport != fport)) { - inp = inp->inp_queue.cqe_next; continue; } nmatch++; |