diff options
author | 2001-01-30 22:48:52 +0000 | |
---|---|---|
committer | 2001-01-30 22:48:52 +0000 | |
commit | 3e2afeaacfdbe7f05f500d9407365f7365f6b6a5 (patch) | |
tree | 351bc802c70862d5104f19bcf2b55513ef91b594 /usr.bin/ssh/sshconnect.c | |
parent | local beef escaped (diff) | |
download | wireguard-openbsd-3e2afeaacfdbe7f05f500d9407365f7365f6b6a5.tar.xz wireguard-openbsd-3e2afeaacfdbe7f05f500d9407365f7365f6b6a5.zip |
Make warning message a little more consistent. ok markus@
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index 00649967439..482ed3b94f9 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -13,7 +13,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect.c,v 1.91 2001/01/21 19:05:59 markus Exp $"); +RCSID("$OpenBSD: sshconnect.c,v 1.92 2001/01/30 22:48:52 djm Exp $"); #include <openssl/bn.h> @@ -705,7 +705,8 @@ check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key, if (options.strict_host_key_checking == 1) { fatal("Exiting, you have requested strict checking."); } else if (options.strict_host_key_checking == 2) { - if (!read_yes_or_no("Continue?", -1)) + if (!read_yes_or_no("Are you sure you want " \ + "to continue connecting (yes/no)? ", -1)) fatal("Aborted by user!\n"); } } |