diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-04-08 07:13:18 +0000 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-04-08 07:13:18 +0000 |
commit | 38d86e7e17f10fe4d2ea1372714f1be5e98aa960 (patch) | |
tree | 545b7251ebce8a59785b338fa48f1e4d7e270fad /libssh/channels.c | |
parent | c4f65cb5dde1b9b90d52d1d444c519cc66a8b656 (diff) | |
download | libssh-38d86e7e17f10fe4d2ea1372714f1be5e98aa960.tar.gz libssh-38d86e7e17f10fe4d2ea1372714f1be5e98aa960.tar.xz libssh-38d86e7e17f10fe4d2ea1372714f1be5e98aa960.zip |
Fix SSHv1 compile errors.
Thanks to Norbert Kiesel <nkiesel@tbdnetworks.com> for the patch.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@424 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'libssh/channels.c')
-rw-r--r-- | libssh/channels.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/channels.c b/libssh/channels.c index ccfe719..5046517 100644 --- a/libssh/channels.c +++ b/libssh/channels.c @@ -927,7 +927,7 @@ int channel_request_pty_size(CHANNEL *channel, const char *terminal, enter_function(); #ifdef HAVE_SSH1 if (channel->version==1) { - err = channel_request_pty_size1(channel,terminal, col, row); + channel_request_pty_size1(channel,terminal, col, row); leave_function(); return rc; } |