Skip to content
Snippets Groups Projects
Commit 944af98b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

fix warning about redefined symbol

parent 2789b2b0
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment