From: Howard Chu Date: Thu, 13 Feb 2003 23:11:30 +0000 (+0000) Subject: Fix typo in peercred DN. Make it agree with actual name used by slapd X-Git-Tag: NO_SLAP_OP_BLOCKS~367 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1128bc63b7db17fdce3339e44234a0141a666ace;p=openldap Fix typo in peercred DN. Make it agree with actual name used by slapd just to avoid confusion. --- diff --git a/libraries/libldap/open.c b/libraries/libldap/open.c index 31db8f49a1..29ee135349 100644 --- a/libraries/libldap/open.c +++ b/libraries/libldap/open.c @@ -358,9 +358,9 @@ ldap_int_open_connection( } #ifdef LDAP_PF_LOCAL if( proto == LDAP_PROTO_IPC ) { - char authid[sizeof("uidNumber=4294967295,gidNumber=4294967295," + char authid[sizeof("uidNumber=4294967295+gidNumber=4294967295," "cn=peercred,cn=external,cn=auth")]; - sprintf( authid, "uidNumber=%d,gidNumber=%d," + sprintf( authid, "uidNumber=%d+gidNumber=%d," "cn=peercred,cn=external,cn=auth", (int) geteuid(), (int) getegid() ); ldap_int_sasl_external( ld, conn, authid, LDAP_PVT_SASL_LOCAL_SSF );