diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_operate.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 2c9b4465a..504c20769 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -867,11 +867,9 @@ static CURLcode operate_do(struct GlobalConfig *global, if(config->proxy) my_setopt_enum(curl, CURLOPT_PROXYTYPE, (long)config->proxyver); - /* new in libcurl 7.10 */ + /* new in libcurl 7.52.0 */ if(config->socksproxy) { my_setopt_str(curl, CURLOPT_SOCKS_PROXY, config->socksproxy); - my_setopt_enum(curl, CURLOPT_SOCKS_PROXYTYPE, - (long)config->socksver); } /* new in libcurl 7.10.6 */ |