summaryrefslogtreecommitdiffstats
path: root/canohost.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-11 03:56:46 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-11 03:56:46 +0000
commite982773d2aa4f5fdc5e9f42838fc3d06c1f12d0b (patch)
treea70a9c203cd0c2801134263bedbfe228017242fd /canohost.c
parentefee05958cc5ef649fde971a307b70eee2941871 (diff)
- itojun@cvs.openbsd.org 2002/07/09 11:56:27
[canohost.c] suppress log on reverse lookup failiure, as there's no real value in doing so. markus ok
Diffstat (limited to 'canohost.c')
-rw-r--r--canohost.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/canohost.c b/canohost.c
index 00c499ca..8081ed59 100644
--- a/canohost.c
+++ b/canohost.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: canohost.c,v 1.32 2002/06/11 08:11:45 itojun Exp $");
+RCSID("$OpenBSD: canohost.c,v 1.33 2002/07/09 11:56:27 itojun Exp $");
#include "packet.h"
#include "xmalloc.h"
@@ -77,7 +77,9 @@ get_remote_hostname(int socket, int verify_reverse_mapping)
if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
NULL, 0, NI_NAMEREQD) != 0) {
/* Host name not found. Use ip address. */
+#if 0
log("Could not reverse map address %.100s.", ntop);
+#endif
return xstrdup(ntop);
}