summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
authordjm <djm>2011-01-06 11:42:04 +0000
committerdjm <djm>2011-01-06 11:42:04 +0000
commit8f03481a749c807daf3e1a2243e97ea4dba5edd5 (patch)
tree464ebb1a3a4e9e186f3e3152196145999a52fe5c /sshconnect.c
parent1209787f45a515ef3a340e4d561ba779aafc1a93 (diff)
downloadopenssh-8f03481a749c807daf3e1a2243e97ea4dba5edd5.tar.gz
- markus@cvs.openbsd.org 2010/12/14 11:59:06
[sshconnect.c] don't mention key type in key-changed-warning, since we also print this warning if a new key type appears. ok djm@
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 064bb74b..45ba6ed1 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.c,v 1.229 2010/11/29 23:45:51 djm Exp $ */
+/* $OpenBSD: sshconnect.c,v 1.230 2010/12/14 11:59:06 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1234,7 +1234,6 @@ static void
warn_changed_key(Key *host_key)
{
char *fp;
- const char *type = key_type(host_key);
fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
@@ -1243,9 +1242,9 @@ warn_changed_key(Key *host_key)
error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
- error("It is also possible that the %s host key has just been changed.", type);
+ error("It is also possible that a host key has just been changed.");
error("The fingerprint for the %s key sent by the remote host is\n%s.",
- type, fp);
+ key_type(host_key), fp);
error("Please contact your system administrator.");
xfree(fp);