diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 | 
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:32 +0000 | 
| commit | 76b5366091f76c9bc73570149ef5055648fc2c39 (patch) | |
| tree | 590d020e0f2a5bea6e09d66d951a674443b21d67 /sys/netinet/tcp_output.c | |
| parent | 4b4d01da6f07f7754ff6a6e4f5223e9f0984d1a6 (diff) | |
Diffstat (limited to 'sys/netinet/tcp_output.c')
| -rw-r--r-- | sys/netinet/tcp_output.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 36f431ac6182c..a0ae43af0b4b0 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -31,7 +31,7 @@   * SUCH DAMAGE.   *   *	@(#)tcp_output.c	8.4 (Berkeley) 5/24/95 - *	$Id: tcp_output.c,v 1.31 1998/07/13 11:53:59 bde Exp $ + *	$Id: tcp_output.c,v 1.30 1998/05/24 18:41:04 fenner Exp $   */  #include "opt_tcpdebug.h" @@ -223,8 +223,7 @@ again:  	if (len) {  		if (len == tp->t_maxseg)  			goto send; -		if (!(tp->t_flags & TF_MORETOCOME) && -		    (idle || tp->t_flags & TF_NODELAY) && +		if ((idle || tp->t_flags & TF_NODELAY) &&  		    (tp->t_flags & TF_NOPUSH) == 0 &&  		    len + off >= so->so_snd.sb_cc)  			goto send; | 
