Correct messages in WIN32 net_recv()
This commit is contained in:
parent
894d4cba10
commit
161e25e886
|
@ -486,12 +486,12 @@ reselect:
|
||||||
nfds = select(fd->ifd + 1, &rfds, NULL, NULL, &to2);
|
nfds = select(fd->ifd + 1, &rfds, NULL, NULL, &to2);
|
||||||
if (nfds == 0) {
|
if (nfds == 0) {
|
||||||
if (verbose > 1) {
|
if (verbose > 1) {
|
||||||
pmsg_notice("ser_recv(): programmer is not responding\n");
|
pmsg_notice("net_recv(): programmer is not responding\n");
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
} else if (nfds == -1) {
|
} else if (nfds == -1) {
|
||||||
if (WSAGetLastError() == WSAEINTR || WSAGetLastError() == WSAEINPROGRESS) {
|
if (WSAGetLastError() == WSAEINTR || WSAGetLastError() == WSAEINPROGRESS) {
|
||||||
pmsg_notice("ser_recv(): programmer is not responding, reselecting\n");
|
pmsg_notice("net_recv(): programmer is not responding, reselecting\n");
|
||||||
goto reselect;
|
goto reselect;
|
||||||
} else {
|
} else {
|
||||||
FormatMessage(
|
FormatMessage(
|
||||||
|
|
Loading…
Reference in New Issue