summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-01-31 09:52:43 +1100
committerDamien Miller <djm@mindrot.org>2001-01-31 09:52:43 +1100
commit3c4659cb6ffb68ef0e81813eb737a3a3544e726c (patch)
tree63040e725a8e6c27e480fe4c7589c6a41deda801
parentb6b4a7a29a06ea869dc163799caa3493f7fc934d (diff)
- (djm) OpenBSD CVS Sync:
- djm@cvs.openbsd.org 2001/01/30 15:48:53 [sshconnect.c] Make warning message a little more consistent. ok markus@
-rw-r--r--ChangeLog6
-rw-r--r--sshconnect.c5
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f28f482f..6667497e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+20000131
+ - (djm) OpenBSD CVS Sync:
+ - djm@cvs.openbsd.org 2001/01/30 15:48:53
+ [sshconnect.c]
+ Make warning message a little more consistent. ok markus@
+
20000130
- (djm) OpenBSD CVS Sync:
- markus@cvs.openbsd.org 2001/01/29 09:55:37
diff --git a/sshconnect.c b/sshconnect.c
index 0994126c..2a2aa98e 100644
--- a/sshconnect.c
+++ b/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>
@@ -713,7 +713,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");
}
}