From: Howard Chu Date: Sun, 25 Mar 2007 04:13:55 +0000 (+0000) Subject: Fix typo in prev commit X-Git-Tag: OPENLDAP_REL_ENG_2_4_MP~581 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0355abeb1a0ea471970c5313a69ce5b20916b408;p=openldap Fix typo in prev commit --- diff --git a/configure.in b/configure.in index 1aa302926c..47b28f8fec 100644 --- a/configure.in +++ b/configure.in @@ -144,8 +144,8 @@ AH_BOTTOM([ # define WIN32_LEAN_AND_MEAN 1 #endif -#ifdef LDAP_PF_LOCAL -#if !defined(HAVE_GETPEEREID) && \ +#if defined(LDAP_PF_LOCAL) && \ + !defined(HAVE_GETPEEREID) && \ !defined(HAVE_GETPEERUCRED) && \ !defined(SO_PEERCRED) && !defined(LOCAL_PEERCRED) && \ defined(HAVE_SENDMSG) && (defined(HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTSLEN) || \ diff --git a/include/portable.hin b/include/portable.hin index 1f4e5b5e93..951ffdf4c4 100644 --- a/include/portable.hin +++ b/include/portable.hin @@ -1071,8 +1071,8 @@ # define WIN32_LEAN_AND_MEAN 1 #endif -#ifdef LDAP_PF_LOCAL -#if !defined(HAVE_GETPEEREID) && \ +#if defined(LDAP_PF_LOCAL) && \ + !defined(HAVE_GETPEEREID) && \ !defined(HAVE_GETPEERUCRED) && \ !defined(SO_PEERCRED) && !defined(LOCAL_PEERCRED) && \ defined(HAVE_SENDMSG) && (defined(HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTSLEN) || \