Revision 50a6f65c2dee52fc3fe5a0e0b2f7460c71cf5a09 authored by Junio C Hamano on 28 October 2016, 16:01:14 UTC, committed by Junio C Hamano on 28 October 2016, 16:01:14 UTC
http.emptyauth configuration is a way to allow an empty username to
pass when attempting to authenticate using mechanisms like
Kerberos.  We took an unspecified (NULL) username and sent ":"
(i.e. no username, no password) to CURLOPT_USERPWD, but did not do
the same when the username is explicitly set to an empty string.

* dt/http-empty-auth:
  http: http.emptyauth should allow empty (not just NULL) usernames
2 parent s c00837c + 5275c30
Raw File
prompt.h
#ifndef PROMPT_H
#define PROMPT_H

#define PROMPT_ASKPASS (1<<0)
#define PROMPT_ECHO    (1<<1)

char *git_prompt(const char *prompt, int flags);

#endif /* PROMPT_H */
back to top