diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2019-08-20 09:13:55 +0200 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-20 14:57:59 +0200 | 
| commit | 6a90c9e0c49dc8179f6ff60bdfe1bd59aa55ef7b (patch) | |
| tree | 1ff0933d74b777497c7f37617e92497032cfa6b0 /lib | |
| parent | 862393243d16870347e56195e93dc47274e32601 (diff) | |
CURLOPT_SSL_VERIFYHOST: treat the value 1 as 2
For a long time (since 7.28.1) we've returned error when setting the
value to 1 to make applications notice that we stopped supported the old
behavior for 1. Starting now, we treat 1 and 2 exactly the same.
Closes #4241
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/setopt.c | 26 | 
1 files changed, 5 insertions, 21 deletions
diff --git a/lib/setopt.c b/lib/setopt.c index 48c4f2040..8909035a9 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -1783,16 +1783,9 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)      arg = va_arg(param, long);      /* Obviously people are not reading documentation and too many thought -       this argument took a boolean when it wasn't and misused it. We thus ban -       1 as a sensible input and we warn about its use. Then we only have the -       2 action internally stored as TRUE. */ - -    if(1 == arg) { -      failf(data, "CURLOPT_SSL_VERIFYHOST no longer supports 1 as value!"); -      return CURLE_BAD_FUNCTION_ARGUMENT; -    } - -    data->set.ssl.primary.verifyhost = (0 != arg) ? TRUE : FALSE; +       this argument took a boolean when it wasn't and misused it. +       Treat 1 and 2 the same */ +    data->set.ssl.primary.verifyhost = (bool)((arg & 3) ? TRUE : FALSE);      /* Update the current connection ssl_config. */      if(data->conn) { @@ -1807,17 +1800,8 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)       */      arg = va_arg(param, long); -    /* Obviously people are not reading documentation and too many thought -       this argument took a boolean when it wasn't and misused it. We thus ban -       1 as a sensible input and we warn about its use. Then we only have the -       2 action internally stored as TRUE. */ - -    if(1 == arg) { -      failf(data, "CURLOPT_SSL_VERIFYHOST no longer supports 1 as value!"); -      return CURLE_BAD_FUNCTION_ARGUMENT; -    } - -    data->set.proxy_ssl.primary.verifyhost = (0 != arg)?TRUE:FALSE; +    /* Treat both 1 and 2 as TRUE */ +    data->set.proxy_ssl.primary.verifyhost = (bool)((arg & 3)?TRUE:FALSE);      /* Update the current connection proxy_ssl_config. */      if(data->conn) {  | 
