From 38d86e7e17f10fe4d2ea1372714f1be5e98aa960 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 8 Apr 2009 07:13:18 +0000 Subject: Fix SSHv1 compile errors. Thanks to Norbert Kiesel for the patch. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@424 7dcaeef0-15fb-0310-b436-a5af3365683c --- libssh/channels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/channels.c') 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; } -- cgit