diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-05-14 21:15:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-14 21:15:36 +0000 |
commit | 944af98be677d87999d3f8ccd3b8a322defb86ac (patch) | |
tree | 19a6197d2feda1def234fcef3d8e88994cabacbb | |
parent | 2789b2b0ad09e58fbdea72757fe6c2a4f9405488 (diff) |
fix warning about redefined symbol
-rw-r--r-- | lib/connect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/connect.c b/lib/connect.c index 4ab7af2bd..8799ba2df 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -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 |