summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2012-10-23 23:12:58 +0200
committerDaniel Stenberg <daniel@haxx.se>2012-10-23 23:12:58 +0200
commit74fe1b95fb44053fdbef4b1eb9f550a3da332eda (patch)
treeb60b883f1e99bbe019b6fbf832db5406388251fb /lib
parentd1c769877a3eab3c88b5f3f55501d3c505e247c8 (diff)
downloadcurl-74fe1b95fb44053fdbef4b1eb9f550a3da332eda.tar.gz
tlsauthtype: deal with the string case insensitively
When given a string as 'srp' it didn't work, but required 'SRP'. Starting now, the check disregards casing. Bug: http://curl.haxx.se/bug/view.cgi?id=3578418 Reported by: Jeff Connelly
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 8bbd3e478..b30a4fa51 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -2589,7 +2589,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
data->set.ssl.authtype = CURL_TLSAUTH_SRP; /* default to SRP */
break;
case CURLOPT_TLSAUTH_TYPE:
- if(strncmp((char *)va_arg(param, char *), "SRP", strlen("SRP")) == 0)
+ if(strnequal((char *)va_arg(param, char *), "SRP", strlen("SRP")))
data->set.ssl.authtype = CURL_TLSAUTH_SRP;
else
data->set.ssl.authtype = CURL_TLSAUTH_NONE;