1
1

example/subsystem_netconf.c: Add a missing newline in an error message

Этот коммит содержится в:
Peter Stuge 2012-02-01 10:56:00 +01:00
родитель b3ade9a63e
Коммит 0ebe6f44bd

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

@ -71,7 +71,7 @@ static int netconf_read_until(LIBSSH2_CHANNEL *channel, const char *endtag,
if (LIBSSH2_ERROR_EAGAIN == len)
continue;
else if (len < 0) {
fprintf(stderr, "libssh2_channel_read: %d", (int)len);
fprintf(stderr, "libssh2_channel_read: %d\n", (int)len);
return -1;
}
rd += len;