aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/main/java/com/trilead/ssh2/channel
diff options
context:
space:
mode:
authorJeffrey Sharkey <jsharkey@jsharkey.org>2008-09-11 21:55:38 +0000
committerJeffrey Sharkey <jsharkey@jsharkey.org>2008-09-11 21:55:38 +0000
commit2e26da6ec90cad67641f588f369e4b8f9dd67288 (patch)
tree44b58f08a746181b2316bea524b0f127218da80a /lib/src/main/java/com/trilead/ssh2/channel
parentd307f712c4e5087a659917f4d4b776e2ec84d697 (diff)
downloadsshlib-2e26da6ec90cad67641f588f369e4b8f9dd67288.tar.gz
sshlib-2e26da6ec90cad67641f588f369e4b8f9dd67288.tar.bz2
sshlib-2e26da6ec90cad67641f588f369e4b8f9dd67288.zip
* WARNING: this build is broken lol
* moving more stuff over to new frontend gui in org.connectbot * found out that we dont need a contentprovider to make desktop shortcuts, will be easy to add ssh://user@host/ uri shortcut handling * new host-editing backend that uses preferences hack, will blog about this technique later today * using colors to categorize hosts (does this work?) * moved host-specific options (like disconnect/edit/delete) to long-tap menu instead of main menu
Diffstat (limited to 'lib/src/main/java/com/trilead/ssh2/channel')
-rw-r--r--lib/src/main/java/com/trilead/ssh2/channel/ChannelManager.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/src/main/java/com/trilead/ssh2/channel/ChannelManager.java b/lib/src/main/java/com/trilead/ssh2/channel/ChannelManager.java
index 74906d3..e582a52 100644
--- a/lib/src/main/java/com/trilead/ssh2/channel/ChannelManager.java
+++ b/lib/src/main/java/com/trilead/ssh2/channel/ChannelManager.java
@@ -698,7 +698,8 @@ public class ChannelManager implements MessageHandler
}
try {
- waitForChannelSuccessOrFailure(c);
+ //waitForChannelSuccessOrFailure(c);
+ this.waitForChannelRequestResult(c);
} catch (IOException e) {
throw (IOException) new IOException("PTY request failed")
.initCause(e);