diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2015-05-28 05:41:30 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2015-05-28 05:41:30 +0000 |
commit | 098bb30c96f1b002e6828b5f916d82bbaa8f8b1c (patch) | |
tree | 39ff60019ac76fe1e6e8861ea759b9e30f358fa9 | |
parent | 3b4bc026968f140891e17203e28d1c9a96b3a7bb (diff) |
Increase the allowed length of the known host file name in the log
message to be consistent with other cases. Part of bz#1993, ok deraadt.
-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 aec2ff84649..9a8dba23107 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.261 2015/04/14 04:17:03 dtucker Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.262 2015/05/28 05:41:29 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -886,7 +886,7 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, host_key, options.hash_known_hosts)) logit("Failed to add the %s host key for IP " "address '%.128s' to the list of known " - "hosts (%.30s).", type, ip, + "hosts (%.500s).", type, ip, user_hostfiles[0]); else logit("Warning: Permanently added the %s host " |