aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 98cf70c1d..3a6ad2203 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -794,7 +794,15 @@ CURLcode Curl_readwrite(struct connectdata *conn,
}
}
else if(checkprefix("Basic", start)) {
- if(data->state.authwant & CURLAUTH_BASIC) {
+ if((data->state.authwant == CURLAUTH_BASIC) &&
+ (k->httpcode == 401)) {
+ /* We asked for Basic authentication but got a 401 back
+ anyway, which basicly means our name+password isn't
+ valid. */
+ data->state.authavail = CURLAUTH_NONE;
+ infof(data, "Authentication problem. Ignoring this.\n");
+ }
+ else if(data->state.authwant & CURLAUTH_BASIC) {
data->state.authavail |= CURLAUTH_BASIC;
}
}