summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2018-10-07 11:57:06 +0100
committerGitHub <noreply@github.com>2018-10-07 11:57:06 +0100
commit0c973356f2ee49e4f22e93a4155cf0c7c32cf9d7 (patch)
tree212fa8ce0001557816cd5f1c8fb6292ee1642933
parenta8d447f68076d1520f69649bb52629941be7031f (diff)
parent475db39bb4c44a2221f340c66c227f555e478d10 (diff)
downloadlibgit2-0c973356f2ee49e4f22e93a4155cf0c7c32cf9d7.tar.gz
Merge pull request #4839 from palmin/ignore-unsupported-http-auth
ignore unsupported http authentication contexts
-rw-r--r--src/transports/http.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/transports/http.c b/src/transports/http.c
index bc3ab18e2..df0d342b9 100644
--- a/src/transports/http.c
+++ b/src/transports/http.c
@@ -142,7 +142,7 @@ static int auth_context_match(
}
if (!scheme)
- return -1;
+ return 0;
/* See if authentication has already started for this scheme */
git_vector_foreach(&t->auth_contexts, i, c) {
@@ -188,6 +188,9 @@ static int apply_credentials(git_buf *buf, http_subtransport *t)
if (auth_context_match(&context, t, credtype_match, &cred->credtype) < 0)
return -1;
+ if (!context)
+ return 0;
+
return context->next_token(buf, context, cred);
}