Merge pull request #124 from nramon/bugfix-fd0

Return -1 when socket_can_read times out.
pull/132/head
David Schweikert 7 years ago committed by GitHub
commit 520e6df833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1716,7 +1716,7 @@ select_again:
#endif
}
return 0;
return -1;
}
int receive_packet(int socket,
@ -2005,7 +2005,7 @@ int wait_for_reply(long wait_time)
to.tv_usec = 0;
}
s = socket_can_read(&to);
if (s == 0) {
if (s == -1) {
return 0; /* timeout */
}

Loading…
Cancel
Save