diff options
author | 2007-02-13 06:39:50 +0000 | |
---|---|---|
committer | 2007-02-13 06:39:50 +0000 | |
commit | c2cde87eb4ec5f3ec9a6a09efce8bc06b8c031e1 (patch) | |
tree | 46d7ab11dfd1cf1a885ff8d4ba1056cbe0205831 /sys/netinet/tcp_input.c | |
parent | Fixed stupid bit mangling on index fields (diff) | |
download | wireguard-openbsd-c2cde87eb4ec5f3ec9a6a09efce8bc06b8c031e1.tar.xz wireguard-openbsd-c2cde87eb4ec5f3ec9a6a09efce8bc06b8c031e1.zip |
whitespace fix
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 9ad61469949..ad21ccc3fec 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.200 2006/12/11 21:31:58 markus Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.201 2007/02/13 06:39:50 itojun Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -1854,7 +1854,7 @@ trimthenstep6: * since last PMTU update */ if (tp->t_pmtud_mss_acked < acked) - tp->t_pmtud_mss_acked = acked; + tp->t_pmtud_mss_acked = acked; tp->snd_una = th->th_ack; #ifdef TCP_ECN |