From: Pierangelo Masarati Date: Sat, 14 Oct 2006 00:59:22 +0000 (+0000) Subject: read entry needs o_bd for ACLs X-Git-Tag: OPENLDAP_REL_ENG_2_3_MP~59 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=07f61475c7c5353785274ba3f8c134c33fac639f;p=openldap read entry needs o_bd for ACLs --- diff --git a/servers/slapd/result.c b/servers/slapd/result.c index 65e83b7232..6d453e582b 100644 --- a/servers/slapd/result.c +++ b/servers/slapd/result.c @@ -1505,14 +1505,15 @@ int slap_read_controls( op->o_preread_attrs : op->o_postread_attrs; bv.bv_len = entry_flatsize( rs->sr_entry, 0 ); - bv.bv_val = op->o_tmpalloc(bv.bv_len, op->o_tmpmemctx ); + bv.bv_val = op->o_tmpalloc( bv.bv_len, op->o_tmpmemctx ); ber_init2( ber, &bv, LBER_USE_DER ); ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx ); /* create new operation */ myop = *op; - myop.o_bd = NULL; + /* FIXME: o_bd needed for ACL */ + myop.o_bd = op->o_bd; myop.o_res_ber = ber; myop.o_callback = NULL; myop.ors_slimit = 1;