fix warning about redefined symbol

This commit is contained in:
Daniel Stenberg 2005-05-14 21:15:36 +00:00
parent 2789b2b0ad
commit 944af98be6
1 changed files with 1 additions and 0 deletions

View File

@ -143,6 +143,7 @@ int Curl_nonblock(curl_socket_t sockfd, /* operate on this */
return fcntl(sockfd, F_SETFL, flags | O_NONBLOCK);
else
return fcntl(sockfd, F_SETFL, flags & (~O_NONBLOCK));
#undef SETBLOCK
#define SETBLOCK 1
#endif