Re: [PATCH 03/10] prompt.c: remove git_getpass() nobody uses

2015-01-14 Thread Jeff King
On Wed, Jan 14, 2015 at 03:40:48PM -0800, Junio C Hamano wrote: > -char *git_getpass(const char *prompt) > -{ > - return git_prompt(prompt, PROMPT_ASKPASS); > -} Yay. This was whittled down to a compatibility wrapper around the more flexible git_prompt, waiting for the final callers to go awa

[PATCH 03/10] prompt.c: remove git_getpass() nobody uses

2015-01-14 Thread Junio C Hamano
Signed-off-by: Junio C Hamano --- prompt.c | 5 - prompt.h | 1 - 2 files changed, 6 deletions(-) diff --git a/prompt.c b/prompt.c index 8181eeb..7540639 100644 --- a/prompt.c +++ b/prompt.c @@ -73,8 +73,3 @@ char *git_prompt(const char *prompt, int flags) } return r; } - -c