diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-12-23 03:06:19 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-12-23 03:06:19 +0100 |
commit | 93576d9538f3b6d373248ffd2ed5ab9852a1555c (patch) | |
tree | 586371841e0ce380acea9ede52d3b73b209cc570 /sshconnect.c | |
parent | - markus@cvs.openbsd.org 2002/11/21 22:45:31 (diff) | |
download | openssh-93576d9538f3b6d373248ffd2ed5ab9852a1555c.tar.xz openssh-93576d9538f3b6d373248ffd2ed5ab9852a1555c.zip |
- deraadt@cvs.openbsd.org 2002/11/21 23:03:51
[auth-krb5.c auth1.c hostfile.h monitor_wrap.c sftp-client.c sftp-int.c ssh-add.c ssh-rsa.c
sshconnect.c]
KNF
Diffstat (limited to 'sshconnect.c')
-rw-r--r-- | sshconnect.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sshconnect.c b/sshconnect.c index f99fe0257..dae25969a 100644 --- a/sshconnect.c +++ b/sshconnect.c @@ -13,7 +13,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect.c,v 1.136 2002/11/21 22:45:31 markus Exp $"); +RCSID("$OpenBSD: sshconnect.c,v 1.137 2002/11/21 23:03:51 deraadt Exp $"); #include <openssl/bn.h> @@ -649,10 +649,10 @@ check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key, "%s key fingerprint is %s.\n" "Are you sure you want to continue connecting " "(yes/no)? ", - host, ip, - has_keys ? ",\nbut keys of different type are already " - "known for this host." : ".", - type, fp); + host, ip, + has_keys ? ",\nbut keys of different type are already " + "known for this host." : ".", + type, fp); xfree(fp); if (!confirm(msg)) goto fail; |