- 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

svn path=/trunk/; revision=21620
This commit is contained in:
Aleksey Bragin 2006-04-16 20:10:12 +00:00
parent 9434974968
commit 83e8c1a2f3

View file

@ -674,7 +674,7 @@ BOOL NETCON_set_timeout(WININET_NETCONNECTION *connection, BOOL send, int value)
if (result == -1)
{
WARN("setsockopt failed (%s)\n", strerror(errno));
INTERNET_SetLastError(sock_get_error(errno));
//INTERNET_SetLastError(sock_get_error(errno));
return FALSE;
}