aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index aa037e99a..76198e0c2 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -312,7 +312,8 @@ CURLcode Curl_http_auth(struct connectdata *conn,
start++;
#ifdef GSSAPI
- if (checkprefix("GSS-Negotiate", start)) {
+ if (checkprefix("GSS-Negotiate", start) ||
+ checkprefix("Negotiate", start)) {
*availp |= CURLAUTH_GSSNEGOTIATE;
if(data->state.authwant == CURLAUTH_GSSNEGOTIATE) {
/* if exactly this is wanted, go */