mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
rs->sr_flags should be saved in variables of type slap_mask_t, not int.
This commit is contained in:
parent
f0091b101f
commit
cc27d26f48
2 changed files with 2 additions and 2 deletions
|
|
@ -289,7 +289,7 @@ dynlist_send_entry( Operation *op, SlapReply *rs )
|
|||
SlapReply r = { REP_SEARCH };
|
||||
struct berval *url;
|
||||
Entry *e;
|
||||
int e_flags;
|
||||
slap_mask_t e_flags;
|
||||
int opattrs,
|
||||
userattrs;
|
||||
dynlist_sc_t dlc = { 0 };
|
||||
|
|
|
|||
|
|
@ -998,7 +998,7 @@ rwm_send_entry( Operation *op, SlapReply *rs )
|
|||
(struct ldaprwmap *)on->on_bi.bi_private;
|
||||
|
||||
Entry *e = NULL;
|
||||
int flags;
|
||||
slap_mask_t flags;
|
||||
struct berval dn = BER_BVNULL,
|
||||
ndn = BER_BVNULL;
|
||||
dncookie dc;
|
||||
|
|
|
|||
Loading…
Reference in a new issue