From: Howard Chu Date: Tue, 3 Apr 2007 01:21:36 +0000 (+0000) Subject: ITS#4893 disable descriptor-based credential passing X-Git-Tag: OPENLDAP_REL_ENG_2_3_35~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bf22de0079665265be8c5d58ba479c5e36637d4;p=thirdparty%2Fopenldap.git ITS#4893 disable descriptor-based credential passing --- diff --git a/CHANGES b/CHANGES index 6a9c78bc50..a9bae69d0b 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,7 @@ OpenLDAP 2.3.35 Engineering Fixed acl set minor typo (ITS#4874) Fixed ldapmodify to use correct memory free functions (ITS#4901) Fixed slapd syncrepl delta-sync modlist free (ITS#4904) + Fixed slapd ldapi:// credential issue (ITS#4893) Fixed slapd-bdb/hdb startup with missing shm env (ITS#4851) Fixed slapd-ldap/meta consistency in referral proxying (ITS#4861) Fixed slapd-ldap bind cleanup in case of unauthorized idassert diff --git a/libraries/liblutil/getpeereid.c b/libraries/liblutil/getpeereid.c index 1b1902dc33..f7010897ac 100644 --- a/libraries/liblutil/getpeereid.c +++ b/libraries/liblutil/getpeereid.c @@ -31,9 +31,10 @@ #include #endif -#if !defined(SO_PEERCRED) && !defined(LOCAL_PEERCRED) && \ +/* Disabled due to ITS#4893, will revisit in release 2.4 */ +#if 0 /* !defined(SO_PEERCRED) && !defined(LOCAL_PEERCRED) && \ defined(HAVE_SENDMSG) && (defined(HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTSLEN) || \ - defined(HAVE_STRUCT_MSGHDR_MSG_CONTROL)) + defined(HAVE_STRUCT_MSGHDR_MSG_CONTROL)) */ #define DO_SENDMSG #ifdef HAVE_SYS_UIO_H #include