mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-12 10:54:48 +08:00
Fix prev commit for modify/delete
This commit is contained in:
parent
dab20397a7
commit
cd0f8dec94
@ -298,7 +298,7 @@ memberof_isGroupOrMember( Operation *op, memberof_is_t *iswhatp, memberof_cbinfo
|
||||
|
||||
if ( mc.foundit ) {
|
||||
iswhat |= MEMBEROF_IS_GROUP;
|
||||
mci->member = mc.vals;
|
||||
if ( mc.vals ) mci->member = mc.vals;
|
||||
|
||||
}
|
||||
}
|
||||
@ -318,7 +318,7 @@ memberof_isGroupOrMember( Operation *op, memberof_is_t *iswhatp, memberof_cbinfo
|
||||
|
||||
if ( mc.foundit ) {
|
||||
iswhat |= MEMBEROF_IS_MEMBER;
|
||||
mci->memberof = mc.vals;
|
||||
if ( mc.vals ) mci->memberof = mc.vals;
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user