]> andersk Git - openssh.git/commitdiff
- itojun@cvs.openbsd.org 2002/07/09 11:56:27
authormouring <mouring>
Thu, 11 Jul 2002 03:56:46 +0000 (03:56 +0000)
committermouring <mouring>
Thu, 11 Jul 2002 03:56:46 +0000 (03:56 +0000)
     [canohost.c]
     suppress log on reverse lookup failiure, as there's no real value in
     doing so.
     markus ok

ChangeLog
canohost.c

index 7989b99d7a6688381e248fb12e689036a49a0d20..e1a46d246ad30c25b2b43104e792f188fdb8b32a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,11 @@
    - itojun@cvs.openbsd.org 2002/07/09 11:56:50
      [sshconnect.c]
      silently try next address on connect(2).  markus ok
+   - 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
 
 20020709
  - (bal) NO_IPPORT_RESERVED_CONCEPT used instead of CYGWIN so other platforms
index 00c499ca041fb96cdcc9d3cdece2e90865196ef7..8081ed598eab0685726a22c2f8947049a6904c53 100644 (file)
@@ -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);
        }
 
This page took 0.068384 seconds and 5 git commands to generate.