diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-10-18 00:18:27 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-10-18 00:18:27 +0000 |
commit | e5ee82274535366632343f80ea5ca5556b056486 (patch) | |
tree | 7629cdfe9a57031765634380166c21b18157c887 /lib | |
parent | 167a92810a77b3abd973ea987a1306cfa155d65c (diff) |
John Dennis filed bug report #2873666
(http://curl.haxx.se/bug/view.cgi?id=2873666) which identified a problem which
made libcurl loop infinitely when given incorrect credentials when using HTTP
GSS negotiate authentication.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/http.c b/lib/http.c index 7cc7a9307..5471f377f 100644 --- a/lib/http.c +++ b/lib/http.c @@ -750,6 +750,9 @@ CURLcode Curl_http_input_auth(struct connectdata *conn, /* we received GSS auth info and we dealt with it fine */ data->state.negotiate.state = GSS_AUTHRECV; } + else { + data->state.authproblem = TRUE; + } } } else |