Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-3]: src/lib/libwrap Pull up following revision(s) (requested by j...



details:   https://anonhg.NetBSD.org/src/rev/1434c5296279
branches:  netbsd-3
changeset: 577743:1434c5296279
user:      snj <snj%NetBSD.org@localhost>
date:      Sat Jan 21 06:01:48 2006 +0000

description:
Pull up following revision(s) (requested by jdc in ticket #1118):
        lib/libwrap/hosts_access.c: revision 1.18
Use ntohl(host_address) so that RBL lookups work on little-endian hosts.
Tested on alpha, i386 and sparc64.
Fixes PR lib/30402.

diffstat:

 lib/libwrap/hosts_access.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 851dc69e14b6 -r 1434c5296279 lib/libwrap/hosts_access.c
--- a/lib/libwrap/hosts_access.c        Sat Jan 21 05:48:05 2006 +0000
+++ b/lib/libwrap/hosts_access.c        Sat Jan 21 06:01:48 2006 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hosts_access.c,v 1.17 2002/12/26 12:53:59 lukem Exp $  */
+/*     $NetBSD: hosts_access.c,v 1.17.6.1 2006/01/21 06:01:48 snj Exp $        */
 
  /*
   * This module implements a simple access control language that is based on
@@ -24,7 +24,7 @@
 #if 0
 static char sccsid[] = "@(#) hosts_access.c 1.21 97/02/12 02:13:22";
 #else
-__RCSID("$NetBSD: hosts_access.c,v 1.17 2002/12/26 12:53:59 lukem Exp $");
+__RCSID("$NetBSD: hosts_access.c,v 1.17.6.1 2006/01/21 06:01:48 snj Exp $");
 #endif
 #endif
 
@@ -321,6 +321,7 @@
        tcpd_warn("unable to convert %s to address", rbl_hostaddr);
        return (NO);
     }
+    host_address = ntohl(host_address);
     /*  construct the rbl name to look up */
     if ((rbl_name = malloc(len)) == NULL) {
        tcpd_jump("not enough memory to build RBL name for %s in %s", rbl_hostaddr, rbl_domain);



Home | Main Index | Thread Index | Old Index