mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 14:06:15 +02:00
Fixed writechannel bug as described in ticket in #246, now closed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3131 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
725f49bb90
commit
9a7f180ba5
12
openwrt/package/dropbear/patches/160-writechannel.patch
Normal file
12
openwrt/package/dropbear/patches/160-writechannel.patch
Normal file
@ -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"))
|
Loading…
Reference in New Issue
Block a user