1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-29 13:01:13 +03:00

Fixed build warning in the sshd example.

This commit is contained in:
Andreas Schneider
2010-03-29 22:47:22 +02:00
parent 6e82193175
commit 1a894b65d4

View File

@ -258,7 +258,10 @@ int main(int argc, char **argv){
do{
i=channel_read_buffer(chan,buf,0,0);
if(i>0)
write(1,buffer_get(buf),buffer_get_len(buf));
if (write(1,buffer_get(buf),buffer_get_len(buf)) < 0) {
printf("error writint to buffer\n");
return 1;
}
} while (i>0);
buffer_free(buf);
ssh_disconnect(session);