From 0fb1df4af2a28bc95b26fbd9d4f172a461d88ef2 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 14 Jan 2015 15:40:48 -0800 Subject: prompt.c: remove git_getpass() nobody uses This was whittled down to a compatibility wrapper around the more flexible git_prompt() in 1cb0134f (refactor git_getpass into generic prompt function, 2011-12-10), waiting for the final callers to go away. That happened in 791643a8 (imap-send: use git-credential, 2014-04-28) when imap-send learned to use the credential interface. Reviewed-by: Jeff King Signed-off-by: Junio C Hamano --- prompt.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'prompt.c') diff --git a/prompt.c b/prompt.c index 8181eebbfc..75406390c6 100644 --- a/prompt.c +++ b/prompt.c @@ -73,8 +73,3 @@ char *git_prompt(const char *prompt, int flags) } return r; } - -char *git_getpass(const char *prompt) -{ - return git_prompt(prompt, PROMPT_ASKPASS); -} -- cgit v1.2.3