From 289293e812b8e8fdc74c8070efb951ae1e4d1fcb Mon Sep 17 00:00:00 2001 From: Ryo Nakamura Date: Mon, 5 Dec 2022 22:27:53 +0900 Subject: change prompt for ssh key passphrase --- src/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssh.c b/src/ssh.c index e0d94d7..5862a30 100644 --- a/src/ssh.c +++ b/src/ssh.c @@ -130,7 +130,7 @@ static int ssh_cache_passphrase(const char *prompt, char *buf, size_t len, int e opts->passphrase = NULL; } - if (ssh_getpass(prompt, buf, len, echo, verify) < 0) + if (ssh_getpass("Passphrase: ", buf, len, echo, verify) < 0) return -1; /* cache the passphrase */ -- cgit v1.2.3