summaryrefslogtreecommitdiff
path: root/canohost.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 12:06:41 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 12:06:41 +1100
commitde85a28825de0dea6aa5b6d3e79f7207d7dda51d (patch)
treecffe44e02b837545563d3147daea738744679fee /canohost.c
parent8275fade44b56aed722ea91bc4586f48babece80 (diff)
downloadopenssh-git-de85a28825de0dea6aa5b6d3e79f7207d7dda51d.tar.gz
- djm@cvs.openbsd.org 2006/03/14 00:15:39
[canohost.c] log the originating address and not just the name when a reverse mapping check fails, requested by linux AT linuon.com
Diffstat (limited to 'canohost.c')
-rw-r--r--canohost.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/canohost.c b/canohost.c
index 76b0bee0..f15aecb6 100644
--- a/canohost.c
+++ b/canohost.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: canohost.c,v 1.49 2006/02/22 00:04:44 stevesk Exp $");
+RCSID("$OpenBSD: canohost.c,v 1.50 2006/03/14 00:15:39 djm Exp $");
#include <ctype.h>
@@ -104,7 +104,7 @@ get_remote_hostname(int sock, int use_dns)
hints.ai_socktype = SOCK_STREAM;
if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
logit("reverse mapping checking getaddrinfo for %.700s "
- "failed - POSSIBLE BREAK-IN ATTEMPT!", name);
+ "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
return xstrdup(ntop);
}
/* Look for the address from the list of addresses. */