From: Florian Fainelli Date: Sat, 4 Feb 2006 23:12:51 +0000 (+0000) Subject: Fixed writechannel bug as described in ticket in #246, now closed X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=a96fb642171279e0c326f34b0d2b4659a4eabfe2 Fixed writechannel bug as described in ticket in #246, now closed SVN-Revision: 3131 --- diff --git a/openwrt/package/dropbear/patches/160-writechannel.patch b/openwrt/package/dropbear/patches/160-writechannel.patch new file mode 100644 index 0000000000..0e84a9953e --- /dev/null +++ b/openwrt/package/dropbear/patches/160-writechannel.patch @@ -0,0 +1,12 @@ +diff -urN dropbear-0.47.orig/common-channel.c dropbear-0.47/common-channel.c +--- dropbear-0.47.orig/common-channel.c 2005-12-09 06:42:31.000000000 +0100 ++++ dropbear-0.47/common-channel.c 2006-02-05 00:03:37.000000000 +0100 +@@ -377,7 +377,7 @@ + cbuf_incrread(cbuf, len); + channel->recvdonelen += len; + +- if (fd == channel->writefd && len == maxlen && channel->recveof) { ++ if (fd == channel->writefd && len == maxlen && channel->recveof && cbuf_getused(channel->writebuf) == 0) { + /* Check if we're closing up */ + closewritefd(channel); + TRACE(("leave writechannel: recveof set"))