summaryrefslogtreecommitdiff
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 f28f482f3..6667497e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120000131
2 - (djm) OpenBSD CVS Sync:
3 - djm@cvs.openbsd.org 2001/01/30 15:48:53
4 [sshconnect.c]
5 Make warning message a little more consistent. ok markus@
6
120000130 720000130
2 - (djm) OpenBSD CVS Sync: 8 - (djm) OpenBSD CVS Sync:
3 - markus@cvs.openbsd.org 2001/01/29 09:55:37 9 - markus@cvs.openbsd.org 2001/01/29 09:55:37
diff --git a/sshconnect.c b/sshconnect.c
index 0994126c0..2a2aa98e7 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -13,7 +13,7 @@
13 */ 13 */
14 14
15#include "includes.h" 15#include "includes.h"
16RCSID("$OpenBSD: sshconnect.c,v 1.91 2001/01/21 19:05:59 markus Exp $"); 16RCSID("$OpenBSD: sshconnect.c,v 1.92 2001/01/30 22:48:52 djm Exp $");
17 17
18#include <openssl/bn.h> 18#include <openssl/bn.h>
19 19
@@ -713,7 +713,8 @@ check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key,
713 if (options.strict_host_key_checking == 1) { 713 if (options.strict_host_key_checking == 1) {
714 fatal("Exiting, you have requested strict checking."); 714 fatal("Exiting, you have requested strict checking.");
715 } else if (options.strict_host_key_checking == 2) { 715 } else if (options.strict_host_key_checking == 2) {
716 if (!read_yes_or_no("Continue?", -1)) 716 if (!read_yes_or_no("Are you sure you want " \
717 "to continue connecting (yes/no)? ", -1))
717 fatal("Aborted by user!\n"); 718 fatal("Aborted by user!\n");
718 } 719 }
719 } 720 }