diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-09-06 20:51:30 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-09-06 20:51:30 +0200 |
commit | 2e7d2c8f7497d8eca30be1b98c9d0c80ef26e55f (patch) | |
tree | cbf33c4ee8caf1a45cb6c5081301f676a16d81e7 /lib/socks.c | |
parent | 3a0b64489f1ae721d6647fa4fc90b7dbb91dd387 (diff) | |
download | curl-2e7d2c8f7497d8eca30be1b98c9d0c80ef26e55f.tar.gz |
SOCKS: truly disable it if CURL_DISABLE_PROXY is defined
Bug: http://curl.haxx.se/bug/view.cgi?id=3561305
Patch by: Marcel Raad
Diffstat (limited to 'lib/socks.c')
-rw-r--r-- | lib/socks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/socks.c b/lib/socks.c index b382de798..43e6d95f6 100644 --- a/lib/socks.c +++ b/lib/socks.c @@ -22,7 +22,7 @@ #include "setup.h" -#if !defined(CURL_DISABLE_PROXY) || defined(USE_WINDOWS_SSPI) +#if !defined(CURL_DISABLE_PROXY) #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> |