mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 02:29:34 -05:00
minor cleanup
This commit is contained in:
parent
9aae5fda23
commit
fdddeb1d8f
2 changed files with 3 additions and 2 deletions
|
|
@ -1672,7 +1672,8 @@ slap_acl_mask(
|
|||
Debug( LDAP_DEBUG_ACL, " <= check a_dynacl: %s\n",
|
||||
da->da_name, 0, 0 );
|
||||
|
||||
(void)( *da->da_mask )( da->da_private, op, e, desc, val, nmatch, matches, &grant, &deny );
|
||||
(void)da->da_mask( da->da_private, op, e, desc,
|
||||
val, nmatch, matches, &grant, &deny );
|
||||
|
||||
tgrant |= grant;
|
||||
tdeny |= deny;
|
||||
|
|
|
|||
|
|
@ -578,7 +578,7 @@ be_db_close( void )
|
|||
}
|
||||
|
||||
if ( frontendDB->bd_info->bi_db_close ) {
|
||||
(*frontendDB->bd_info->bi_db_close)( frontendDB );
|
||||
frontendDB->bd_info->bi_db_close( frontendDB );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue