diff options
author | 2015-09-04 03:57:38 +0000 | |
---|---|---|
committer | 2015-09-04 03:57:38 +0000 | |
commit | 7f8f3ba0355bb68a4f205e61d54b071c10226be4 (patch) | |
tree | 73b5fb31012bd1f3ee4107ae4c3e37bc60ed118e /usr.bin/ssh/sshconnect.c | |
parent | fix a race when fetching files from the kernel. the number of files (diff) | |
download | wireguard-openbsd-7f8f3ba0355bb68a4f205e61d54b071c10226be4.tar.xz wireguard-openbsd-7f8f3ba0355bb68a4f205e61d54b071c10226be4.zip |
remove extra newline in nethack-mode hostkey;
from Christian Hesse bz#2686
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index 23dbca1c7f9..13379f32765 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.263 2015/08/20 22:32:42 deraadt Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.264 2015/09/04 03:57:38 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -899,7 +899,7 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, options.fingerprint_hash, SSH_FP_RANDOMART); if (fp == NULL || ra == NULL) fatal("%s: sshkey_fingerprint fail", __func__); - logit("Host key fingerprint is %s\n%s\n", fp, ra); + logit("Host key fingerprint is %s\n%s", fp, ra); free(ra); free(fp); } |