diff options
author | Kenny Root <kenny@the-b.org> | 2001-05-05 06:11:42 -0700 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2011-05-05 13:17:05 -0700 |
commit | a01873bb26e017fda36011255a3460b8021f4bd6 (patch) | |
tree | b457f34b0f1be0ecf679d843b2eb037b7b5b989a /src/com/trilead/ssh2/channel/LocalAcceptThread.java | |
parent | b298f93de107904ae69185662e01e961a9d167c8 (diff) | |
download | connectbot-a01873bb26e017fda36011255a3460b8021f4bd6.tar.gz connectbot-a01873bb26e017fda36011255a3460b8021f4bd6.tar.bz2 connectbot-a01873bb26e017fda36011255a3460b8021f4bd6.zip |
Attempt to fix CLOSE_WAIT problem
Diffstat (limited to 'src/com/trilead/ssh2/channel/LocalAcceptThread.java')
-rw-r--r-- | src/com/trilead/ssh2/channel/LocalAcceptThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/trilead/ssh2/channel/LocalAcceptThread.java b/src/com/trilead/ssh2/channel/LocalAcceptThread.java index 1b08d9c..885b41f 100644 --- a/src/com/trilead/ssh2/channel/LocalAcceptThread.java +++ b/src/com/trilead/ssh2/channel/LocalAcceptThread.java @@ -96,7 +96,7 @@ public class LocalAcceptThread extends Thread implements IChannelWorkerThread try
{
- r2l = new StreamForwarder(cn, null, null, cn.stdoutStream, s.getOutputStream(), "RemoteToLocal");
+ r2l = new StreamForwarder(cn, null, s, cn.stdoutStream, s.getOutputStream(), "RemoteToLocal");
l2r = new StreamForwarder(cn, r2l, s, s.getInputStream(), cn.stdinStream, "LocalToRemote");
}
catch (IOException e)
|