1
1

Fix return code in libssh2_channel_write_ex()

Этот коммит содержится в:
Sara Golemon 2004-12-16 23:04:11 +00:00
родитель 3614bdac21
Коммит a0cd3ed3dc

Просмотреть файл

@ -612,7 +612,7 @@ LIBSSH2_API int libssh2_channel_write_ex(LIBSSH2_CHANNEL *channel, int stream_id
/* twiddle our thumbs until there's window space available */
if (libssh2_packet_read(session, 1) < 0) {
/* Error occured, disconnect? */
return 0;
return -1;
}
}