diff options
author | 2001-11-24 19:29:06 +0000 | |
---|---|---|
committer | 2001-11-24 19:29:06 +0000 | |
commit | 3a3ca942b59b6c68a89244cc54a26bbf2bb35e31 (patch) | |
tree | dc12fe526dc316db42bb1cd7653f132eb326628a /sys/netinet/tcp_output.c | |
parent | argh! i messed something up! (diff) | |
download | wireguard-openbsd-3a3ca942b59b6c68a89244cc54a26bbf2bb35e31.tar.xz wireguard-openbsd-3a3ca942b59b6c68a89244cc54a26bbf2bb35e31.zip |
KNF
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index d7587bc52e6..261fe6efc4e 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.43 2001/06/25 01:59:29 angelos Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.44 2001/11/24 19:29:07 deraadt Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -1102,8 +1102,8 @@ out: tcp_mtudisc(tp->t_inpcb, 0); return (0); } - if ((error == EHOSTUNREACH || error == ENETDOWN) - && TCPS_HAVERCVDSYN(tp->t_state)) { + if ((error == EHOSTUNREACH || error == ENETDOWN) && + TCPS_HAVERCVDSYN(tp->t_state)) { tp->t_softerror = error; return (0); } |