rs->sr_flags should be saved in variables of type slap_mask_t, not int.

This commit is contained in:
Hallvard Furuseth 2005-07-22 13:28:49 +00:00
parent f0091b101f
commit cc27d26f48
2 changed files with 2 additions and 2 deletions

View File

@ -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 };

View File

@ -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;