From fbc40129007f599695b62e6363cd41a77f7b433f Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Fri, 15 Jul 2005 00:11:10 +0000 Subject: [PATCH] fix controls propagation (ITS#3813) --- CHANGES | 1 + servers/slapd/back-meta/bind.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 0e3068d486..b467f66867 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,7 @@ OpenLDAP 2.2.28 Engineering Fixed back-hdb nested modrdn bug (ITS#3857) Fixed back-ldap/meta undefined filter propagation (ITS#3785) Fixed back-meta add w/o parent add (ITS#3804) + Fixed back-meta control propagation bug (ITS#3813) Fixed syncrepl SASL bind crash (ITS#3792) OpenLDAP 2.2.27 Release diff --git a/servers/slapd/back-meta/bind.c b/servers/slapd/back-meta/bind.c index f068b10779..7f7b64a516 100644 --- a/servers/slapd/back-meta/bind.c +++ b/servers/slapd/back-meta/bind.c @@ -358,7 +358,7 @@ meta_back_dobind( struct metaconn *lc, Operation *op ) } rc = ldap_sasl_bind( lsc->ld, "", LDAP_SASL_SIMPLE, &cred, - op->o_ctrls, NULL, &msgid ); + NULL, NULL, &msgid ); if ( rc == LDAP_SUCCESS ) { LDAPMessage *res; struct timeval tv = { 0, 0 }; -- 2.39.5