From 776e8594bd10476806e76e0bc570104fb65c10fd Mon Sep 17 00:00:00 2001 From: jlemon Date: Thu, 13 Dec 2001 04:02:31 +0000 Subject: Fix up tabs from cut&n&paste. --- sys/netinet/tcp_output.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sys/netinet') diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 13f5ca9..9d3dac1 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -282,13 +282,13 @@ again: * Sender silly window avoidance. We transmit under the following * conditions when len is non-zero: * - * - We have a full segment - * - This is the last buffer in a write()/send() and we are - * either idle or running NODELAY - * - we've timed out (e.g. persist timer) - * - we have more then 1/2 the maximum send window's worth of - * data (receiver may be limited the window size) - * - we need to retransmit + * - We have a full segment + * - This is the last buffer in a write()/send() and we are + * either idle or running NODELAY + * - we've timed out (e.g. persist timer) + * - we have more then 1/2 the maximum send window's worth of + * data (receiver may be limited the window size) + * - we need to retransmit */ if (len) { if (len == tp->t_maxseg) @@ -300,7 +300,7 @@ again: * * note: the len + off check is almost certainly unnecessary. */ - if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */ + if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */ (idle || (tp->t_flags & TF_NODELAY)) && len + off >= so->so_snd.sb_cc && (tp->t_flags & TF_NOPUSH) == 0) { -- cgit v1.1