Skip to content

Commit 0fb1df4

Browse files
committed
prompt.c: remove git_getpass() nobody uses
This was whittled down to a compatibility wrapper around the more flexible git_prompt() in 1cb0134 (refactor git_getpass into generic prompt function, 2011-12-10), waiting for the final callers to go away. That happened in 791643a (imap-send: use git-credential, 2014-04-28) when imap-send learned to use the credential interface. Reviewed-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b90a3d7 commit 0fb1df4

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

prompt.c

-5
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,3 @@ char *git_prompt(const char *prompt, int flags)
7373
}
7474
return r;
7575
}
76-
77-
char *git_getpass(const char *prompt)
78-
{
79-
return git_prompt(prompt, PROMPT_ASKPASS);
80-
}

prompt.h

-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@
55
#define PROMPT_ECHO (1<<1)
66

77
char *git_prompt(const char *prompt, int flags);
8-
char *git_getpass(const char *prompt);
98

109
#endif /* PROMPT_H */

0 commit comments

Comments
 (0)