diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-26 20:02:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-26 20:02:36 +0000 |
commit | 2c53b6584d1f5e814f2ea4d48080385836a380e7 (patch) | |
tree | 6e457f8539f70bbcdd4704b6373217d63969a808 /sys/netinet/tcp_input.c | |
parent | 685a19c16803716b9d0ad42deb2236204d438380 (diff) |
indent
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 5cbfd174029..9c3e8f93985 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.14 1997/08/16 01:34:41 angelos Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.15 1997/08/26 20:02:32 deraadt Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -1306,7 +1306,7 @@ trimthenstep6: } break; - /* + /* * In CLOSING STATE in addition to the processing for * the ESTABLISHED state if the ACK acknowledges our FIN * then enter the TIME-WAIT state, otherwise ignore @@ -1461,14 +1461,14 @@ dodata: /* XXX */ } switch (tp->t_state) { - /* + /* * In ESTABLISHED STATE enter the CLOSE_WAIT state. */ case TCPS_ESTABLISHED: tp->t_state = TCPS_CLOSE_WAIT; break; - /* + /* * If still in FIN_WAIT_1 STATE FIN has not been acked so * enter the CLOSING state. */ @@ -1476,7 +1476,7 @@ dodata: /* XXX */ tp->t_state = TCPS_CLOSING; break; - /* + /* * In FIN_WAIT_2 state enter the TIME_WAIT state, * starting the time-wait timer, turning off the other * standard timers. |