summaryrefslogtreecommitdiffstats
path: root/libssh/channels.c
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-04-08 07:13:18 +0000
committerAndreas Schneider <mail@cynapses.org>2009-04-08 07:13:18 +0000
commit38d86e7e17f10fe4d2ea1372714f1be5e98aa960 (patch)
tree545b7251ebce8a59785b338fa48f1e4d7e270fad /libssh/channels.c
parentc4f65cb5dde1b9b90d52d1d444c519cc66a8b656 (diff)
downloadlibssh-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.c2
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;
}