Author: fireball Date: Mon Apr 17 00:10:12 2006 New Revision: 21620
URL: http://svn.reactos.ru/svn/reactos?rev=21620&view=rev Log: - Comment an error-setting line since we don't have get_sock_error() function - Something different should be used here - This change fixes building of the component
Modified: trunk/reactos/dll/win32/wininet/netconnection.c
Modified: trunk/reactos/dll/win32/wininet/netconnection.c URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/wininet/netconnect... ============================================================================== --- trunk/reactos/dll/win32/wininet/netconnection.c (original) +++ trunk/reactos/dll/win32/wininet/netconnection.c Mon Apr 17 00:10:12 2006 @@ -674,7 +674,7 @@ if (result == -1) { WARN("setsockopt failed (%s)\n", strerror(errno)); - INTERNET_SetLastError(sock_get_error(errno)); + //INTERNET_SetLastError(sock_get_error(errno)); return FALSE; }