diff options
author | Ramsay Jones <ramsay@ramsayjones.plus.com> | 2024-08-31 16:58:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-09-01 17:26:51 +0200 |
commit | d4dc0efd7d4b71acadae61f619b9e84f97d15c83 (patch) | |
tree | 7a2dda4a7ef26e8f9ff5cb0852680292bf2093b0 /compat | |
parent | Git 2.46 (diff) | |
download | git-d4dc0efd7d4b71acadae61f619b9e84f97d15c83.tar.xz git-d4dc0efd7d4b71acadae61f619b9e84f97d15c83.zip |
compat/terminal: mark parameter of git_terminal_prompt() UNUSED
If neither HAVE_DEV_TTY nor GIT_WINDOWS_NATIVE is set, the fallback
code calls the system getpass(). This unfortunately ignores the "echo"
boolean parameter, as we have no way to implement that functionality.
But we still have to keep the unused parameter, since our interface
has to match the other implementations.
Co-authored-by: Jeff King <peff@peff.net>
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r-- | compat/terminal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/terminal.c b/compat/terminal.c index 0afda730f2..d54efa1c5d 100644 --- a/compat/terminal.c +++ b/compat/terminal.c @@ -594,7 +594,7 @@ void restore_term(void) { } -char *git_terminal_prompt(const char *prompt, int echo) +char *git_terminal_prompt(const char *prompt, int echo UNUSED) { return getpass(prompt); } |