diff options
author | 2003-05-19 02:03:28 +0000 | |
---|---|---|
committer | 2003-05-19 02:03:28 +0000 | |
commit | 5c4874d82616f6c6b2ed121e8241a7f9038e75ec (patch) | |
tree | a4c79598db58fd01647ffbd9e163798409ce4fac /sys/netinet/tcp_input.c | |
parent | add a quirk for my trek thumbdrive (diff) | |
download | wireguard-openbsd-5c4874d82616f6c6b2ed121e8241a7f9038e75ec.tar.xz wireguard-openbsd-5c4874d82616f6c6b2ed121e8241a7f9038e75ec.zip |
Bad switch condition used for SO_DEBUG, ok itojun@
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 301f8468ca2..950094c7264 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.126 2003/04/29 10:25:41 miod Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.127 2003/05/19 02:03:28 dhartmei Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -2243,7 +2243,7 @@ dodata: /* XXX */ } } if (so->so_options & SO_DEBUG) { - switch (tp->pf == PF_INET6) { + switch (tp->pf) { #ifdef INET6 case PF_INET6: tcp_trace(TA_INPUT, ostate, tp, (caddr_t) &tcp_saveti6, |