diff options
author | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-09-11 21:55:38 +0000 |
---|---|---|
committer | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-09-11 21:55:38 +0000 |
commit | 071e39dc7e7d06c021a6d65ae7a65242c8ea99ed (patch) | |
tree | 71ac1b00fa9fc45cf155021879ab55f1ff395611 /src/com/trilead/ssh2/channel/ChannelManager.java | |
parent | 6681b4c809bf76cd558c5b314b6de9cfc98bc187 (diff) | |
download | connectbot-071e39dc7e7d06c021a6d65ae7a65242c8ea99ed.tar.gz connectbot-071e39dc7e7d06c021a6d65ae7a65242c8ea99ed.tar.bz2 connectbot-071e39dc7e7d06c021a6d65ae7a65242c8ea99ed.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 'src/com/trilead/ssh2/channel/ChannelManager.java')
-rw-r--r-- | src/com/trilead/ssh2/channel/ChannelManager.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/trilead/ssh2/channel/ChannelManager.java b/src/com/trilead/ssh2/channel/ChannelManager.java index 74906d3..e582a52 100644 --- a/src/com/trilead/ssh2/channel/ChannelManager.java +++ b/src/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);
|