From: dtucker Date: Sat, 24 Oct 2009 00:40:32 +0000 (+0000) Subject: - (dtucker) OpenBSD CVS Sync X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/commitdiff_plain/5c0f41993bcc38b703dba499e65063661a0fd000 - (dtucker) OpenBSD CVS Sync - djm@cvs.openbsd.org 2009/10/11 23:03:15 [hostfile.c] mention the host name that we are looking for in check_host_in_hostfile() --- diff --git a/ChangeLog b/ChangeLog index 918a48da..16f45c8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +20091024 + - (dtucker) OpenBSD CVS Sync + - djm@cvs.openbsd.org 2009/10/11 23:03:15 + [hostfile.c] + mention the host name that we are looking for in check_host_in_hostfile() + 20091011 - (dtucker) [configure.ac sftp-client.c] Remove the gyrations required for dirent d_type and DTTOIF as we've switched OpenBSD to the more portable diff --git a/hostfile.c b/hostfile.c index 2cceb352..cd28bf44 100644 --- a/hostfile.c +++ b/hostfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hostfile.c,v 1.45 2006/08/03 03:34:42 deraadt Exp $ */ +/* $OpenBSD: hostfile.c,v 1.46 2009/10/11 23:03:15 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -204,7 +204,7 @@ check_host_in_hostfile_by_key_or_type(const char *filename, char *cp, *cp2, *hashed_host; HostStatus end_return; - debug3("check_host_in_hostfile: filename %s", filename); + debug3("check_host_in_hostfile: host %s filename %s", host, filename); /* Open the file containing the list of known hosts. */ f = fopen(filename, "r");