diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2001-01-30 22:48:53 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2001-01-30 22:48:53 +0000 |
commit | c2ac3f6cfccf0184b65e76b981b415354f820e4a (patch) | |
tree | d84c803248f646fdce56e8f901879b62067f5d40 /usr.bin/ssh/sshconnect.c | |
parent | e30d55bef32e562236c500bc14dd0e8a5011506f (diff) |
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"); } } |