Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates-src > by-pkgid > 5d0055585ccf8a1fffd21a5e64b8bbb9 > files > 1

openssh-5.4p1-5.fc13.src.rpm

--- openssh-4.0p1/channels.c.exit-deadlock	2005-03-01 11:24:33.000000000 +0100
+++ openssh-4.0p1/channels.c	2005-04-05 22:25:15.197226237 +0200
@@ -1403,6 +1403,10 @@
 	u_int dlen;
 	int len;
 
+	if(c->wfd != -1 && buffer_len(&c->output) > 0 && c->ostate == CHAN_OUTPUT_WAIT_DRAIN) {
+		debug("channel %d: forcing write", c->self);
+		FD_SET(c->wfd, writeset);
+	}
 	/* Send buffered output data to the socket. */
 	if (c->wfd != -1 &&
 	    FD_ISSET(c->wfd, writeset) &&