summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2004-12-29 17:17:28 +0000
committermarkus <markus@openbsd.org>2004-12-29 17:17:28 +0000
commit2e20e934b795cf4f5c8e5fed2ce921ea8a920c6b (patch)
tree3c1e18baddecf9838297eedaf9314dda17693bcb /sys/netinet/tcp_input.c
parentPrint 'set fingerprints' correctly when parsing verbosely. (diff)
downloadwireguard-openbsd-2e20e934b795cf4f5c8e5fed2ce921ea8a920c6b.tar.xz
wireguard-openbsd-2e20e934b795cf4f5c8e5fed2ce921ea8a920c6b.zip
fix indent
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 83acaa05bed..d6be2781d50 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_input.c,v 1.178 2004/11/25 15:32:08 markus Exp $ */
+/* $OpenBSD: tcp_input.c,v 1.179 2004/12/29 17:17:28 markus Exp $ */
/* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */
/*
@@ -996,7 +996,7 @@ after_listen:
if (opti.ts_present)
tcp_xmit_timer(tp, tcp_now-opti.ts_ecr+1);
else if (tp->t_rtttime &&
- SEQ_GT(th->th_ack, tp->t_rtseq))
+ SEQ_GT(th->th_ack, tp->t_rtseq))
tcp_xmit_timer(tp,
tcp_now - tp->t_rtttime);
acked = th->th_ack - tp->snd_una;