mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-13 02:12:55 -05:00
ITS#7350 allow value-specific ACLs on zero-length values
This commit is contained in:
parent
a0e48e7246
commit
3d107181cf
1 changed files with 1 additions and 1 deletions
|
|
@ -2830,7 +2830,7 @@ acl_unparse( AccessControl *a, struct berval *bv )
|
|||
ptr = acl_safe_strcopy( ptr, "\n" );
|
||||
}
|
||||
|
||||
if ( !BER_BVISEMPTY( &a->acl_attrval ) ) {
|
||||
if ( !BER_BVISNULL( &a->acl_attrval ) ) {
|
||||
to++;
|
||||
ptr = acl_safe_strcopy( ptr, " val." );
|
||||
if ( a->acl_attrval_style == ACL_STYLE_BASE &&
|
||||
|
|
|
|||
Loading…
Reference in a new issue