Changelog:
        dlls/winsock/socket.c:wsaErrno
        We always have strerror, no more need to use HAVE_STRERROR

Uwe Bonnes                [EMAIL PROTECTED]

Free Software: If you contribute nothing, expect nothing
--


Index: wine/dlls/winsock/socket.c
===================================================================
RCS file: /home/wine/wine/dlls/winsock/socket.c,v
retrieving revision 1.22
diff -u -r1.22 socket.c
--- wine/dlls/winsock/socket.c  2000/07/25 17:45:50     1.22
+++ wine/dlls/winsock/socket.c  2000/07/29 17:01:31
@@ -3039,11 +3095,7 @@
 UINT16 wsaErrno(void)
 {
     int        loc_errno = errno; 
-#ifdef HAVE_STRERROR
     WARN("errno %d, (%s).\n", loc_errno, strerror(loc_errno));
-#else
-    WARN("errno %d\n", loc_errno);
-#endif
 
     switch(loc_errno)
     {

Reply via email to