git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] http: http.emptyauth should allow empty (not just NULL) usernames
@ 2016-10-03 17:19 David Turner
  2016-10-03 21:01 ` Jeff King
  0 siblings, 1 reply; 7+ messages in thread
From: David Turner @ 2016-10-03 17:19 UTC (permalink / raw)
  To: git, sandals; +Cc: David Turner

When using kerberos authentication, one URL pattern which is
allowed is http://@gitserver.example.com.  This leads to a username
of zero-length, rather than a NULL username.  But the two cases
should be treated the same by http.emptyauth.

Signed-off-by: David Turner <dturner@twosigma.com>
---
 http.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http.c b/http.c
index 82ed542..bd0dba2 100644
--- a/http.c
+++ b/http.c
@@ -351,7 +351,7 @@ static int http_options(const char *var, const char *value, void *cb)
 
 static void init_curl_http_auth(CURL *result)
 {
-	if (!http_auth.username) {
+	if (!http_auth.username || !*http_auth.username) {
 		if (curl_empty_auth)
 			curl_easy_setopt(result, CURLOPT_USERPWD, ":");
 		return;
-- 
2.8.0.rc4.22.g8ae061a


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-10-04  0:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-03 17:19 [PATCH] http: http.emptyauth should allow empty (not just NULL) usernames David Turner
2016-10-03 21:01 ` Jeff King
2016-10-03 21:54   ` David Turner
2016-10-03 21:58     ` Jeff King
2016-10-03 22:26       ` David Turner
2016-10-03 22:54         ` Junio C Hamano
2016-10-04  0:07     ` brian m. carlson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).