diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2009-10-11 23:03:16 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2009-10-11 23:03:16 +0000 |
commit | 628fe3d86d7e0cfc6a302fba3f53c288bacfa376 (patch) | |
tree | 7b124af939fcb74c5777fa5ffeda0f49d63eb07a | |
parent | 47bf08d94ad6bc636442f6dddc9b75c9a8f14525 (diff) |
mention the host name that we are looking for in check_host_in_hostfile()
-rw-r--r-- | usr.bin/ssh/hostfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/hostfile.c b/usr.bin/ssh/hostfile.c index f9d664a8266..65557b9b26d 100644 --- a/usr.bin/ssh/hostfile.c +++ b/usr.bin/ssh/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 <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -201,7 +201,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"); |