1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

auth: fix things broken during merge

This commit is contained in:
Aris Adamantiadis
2011-09-02 14:09:12 +03:00
parent 20f8e73e3e
commit 7e5f1edcb4
2 changed files with 5 additions and 25 deletions

View File

@@ -1241,7 +1241,7 @@ int channel_write_common(ssh_channel channel, const void *data,
#ifdef WITH_SSH1
if (channel->version == 1) {
int rc = channel_write1(channel, data, len);
rc = channel_write1(channel, data, len);
leave_function();
return rc;
}