mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 06:01:23 -05:00
fix BVarray
This commit is contained in:
parent
879733f9f7
commit
f3b61d87b7
1 changed files with 2 additions and 2 deletions
|
|
@ -888,9 +888,9 @@ acl_mask(
|
|||
* rights are determined by OR'ing the individual
|
||||
* rights given by the acis.
|
||||
*/
|
||||
for ( i = 0; at->a_vals[i] != NULL; i++ ) {
|
||||
for ( i = 0; at->a_vals[i].bv_val != NULL; i++ ) {
|
||||
if (aci_mask( be, conn, op,
|
||||
e, desc, val, at->a_vals[i],
|
||||
e, desc, val, &at->a_vals[i],
|
||||
matches, &grant, &deny ) != 0)
|
||||
{
|
||||
tgrant |= grant;
|
||||
|
|
|
|||
Loading…
Reference in a new issue