aboutsummaryrefslogtreecommitdiff
path: root/src/wsocket.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wsocket.c')
-rw-r--r--src/wsocket.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wsocket.c b/src/wsocket.c
index d9da6fc..511dbdc 100644
--- a/src/wsocket.c
+++ b/src/wsocket.c
@@ -373,12 +373,10 @@ static const char *wstrerror(int err) {
373 case WSANOTINITIALISED: 373 case WSANOTINITIALISED:
374 return "Successful WSAStartup not yet performed"; 374 return "Successful WSAStartup not yet performed";
375 case WSAEDISCON: return "Graceful shutdown in progress"; 375 case WSAEDISCON: return "Graceful shutdown in progress";
376 case WSATYPE_NOT_FOUND: return "Class type not found";
377 case WSAHOST_NOT_FOUND: return "Host not found"; 376 case WSAHOST_NOT_FOUND: return "Host not found";
378 case WSATRY_AGAIN: return "Nonauthoritative host not found"; 377 case WSATRY_AGAIN: return "Nonauthoritative host not found";
379 case WSANO_RECOVERY: return "Nonrecoverable name lookup error"; 378 case WSANO_RECOVERY: return "Nonrecoverable name lookup error";
380 case WSANO_DATA: return "Valid name, no data record of requested type"; 379 case WSANO_DATA: return "Valid name, no data record of requested type";
381 case WSASYSCALLFAILURE: return "System call failure";
382 default: return "Unknown error"; 380 default: return "Unknown error";
383 } 381 }
384} 382}