From 91459ca770688aa653a37d41eae76eb36c4b9373 Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Sat, 4 Jul 2009 15:58:40 -0400 Subject: [PATCH] pwmc: Use a better description when prompting to add a new hostkey. --- src/pwmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pwmc.c b/src/pwmc.c index 70087447..44b53bfc 100644 --- a/src/pwmc.c +++ b/src/pwmc.c @@ -277,7 +277,7 @@ static gpg_error_t knownhost_cb(void *data, const char *host, const char *key, size_t len) { gpg_error_t rc; - char *buf = pwmd_strdup_printf(N_("Password Manager Daemon: %s\n\nWhile attepting an SSH connection to %s, there was a problem verifying it's hostkey against the known and trusted hosts file. Would you like to treat this connection as trusted for this and future connections?"), (char *)data, host); + char *buf = pwmd_strdup_printf(N_("Password Manager Daemon: %s\n\nWhile attepting an SSH connection to %s, there was a problem verifying it's hostkey against the known and trusted hosts file because it's hostkey was not found.\n\nWould you like to treat this connection as trusted for this and future connections by adding %s's hostkey to the known hosts file?"), (char *)data, host, host); rc = pwmd_setopt(pwm, PWMD_OPTION_PINENTRY_TITLE, buf); pwmd_free(buf); -- 2.11.4.GIT