summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 776d72065..dae25969a 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.135 2002/09/19 01:58:18 djm Exp $"); 16RCSID("$OpenBSD: sshconnect.c,v 1.137 2002/11/21 23:03:51 deraadt Exp $");
17 17
18#include <openssl/bn.h> 18#include <openssl/bn.h>
19 19
@@ -247,7 +247,7 @@ ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
247 */ 247 */
248 int full_failure = 1; 248 int full_failure = 1;
249 249
250 debug("ssh_connect: needpriv %d", needpriv); 250 debug2("ssh_connect: needpriv %d", needpriv);
251 251
252 /* Get default port if port has not been set. */ 252 /* Get default port if port has not been set. */
253 if (port == 0) { 253 if (port == 0) {
@@ -649,10 +649,10 @@ check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key,
649 "%s key fingerprint is %s.\n" 649 "%s key fingerprint is %s.\n"
650 "Are you sure you want to continue connecting " 650 "Are you sure you want to continue connecting "
651 "(yes/no)? ", 651 "(yes/no)? ",
652 host, ip, 652 host, ip,
653 has_keys ? ",\nbut keys of different type are already " 653 has_keys ? ",\nbut keys of different type are already "
654 "known for this host." : ".", 654 "known for this host." : ".",
655 type, fp); 655 type, fp);
656 xfree(fp); 656 xfree(fp);
657 if (!confirm(msg)) 657 if (!confirm(msg))
658 goto fail; 658 goto fail;