From c0f8e30d2290b22718f3cfd6800679dfb4c253a9 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 4 Dec 2002 05:13:14 +0000 Subject: [PATCH] cleanup --- libraries/libldap/util-int.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/libldap/util-int.c b/libraries/libldap/util-int.c index f54c9f78f8..6a2d5bd348 100644 --- a/libraries/libldap/util-int.c +++ b/libraries/libldap/util-int.c @@ -50,12 +50,12 @@ #endif #if defined(HAVE_GETHOSTBYNAME_R) && \ - (GETHOSTBYNAME_R_NARGS > 6 || GETHOSTBYNAME_R_NARGS < 5) + (GETHOSTBYNAME_R_NARGS < 5) || (6 < GETHOSTBYNAME_R_NARGS) /* Don't know how to handle this version, pretend it's not there */ # undef HAVE_GETHOSTBYNAME_R #endif #if defined(HAVE_GETHOSTBYADDR_R) && \ - (GETHOSTBYADDR_R_NARGS > 8 || GETHOSTBYADDR_R_NARGS < 7) + (GETHOSTBYADDR_R_NARGS < 7) || (8 < GETHOSTBYADDR_R_NARGS) /* Don't know how to handle this version, pretend it's not there */ # undef HAVE_GETHOSTBYADDR_R #endif -- 2.39.5