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/RemoteX11AcceptThread.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/RemoteX11AcceptThread.java')
-rw-r--r-- | src/com/trilead/ssh2/channel/RemoteX11AcceptThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/trilead/ssh2/channel/RemoteX11AcceptThread.java b/src/com/trilead/ssh2/channel/RemoteX11AcceptThread.java index 8ee05a2..34ce51f 100644 --- a/src/com/trilead/ssh2/channel/RemoteX11AcceptThread.java +++ b/src/com/trilead/ssh2/channel/RemoteX11AcceptThread.java @@ -191,7 +191,7 @@ public class RemoteX11AcceptThread extends Thread /* Start forwarding traffic */
- StreamForwarder r2l = new StreamForwarder(c, null, null, remote_is, x11_os, "RemoteToX11");
+ StreamForwarder r2l = new StreamForwarder(c, null, s, remote_is, x11_os, "RemoteToX11");
StreamForwarder l2r = new StreamForwarder(c, null, null, x11_is, remote_os, "X11ToRemote");
/* No need to start two threads, one can be executed in the current thread */
|