mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-05 22:50:51 -05:00
Fix anonymous mapping
This commit is contained in:
parent
781a8e2afc
commit
b05d071c3a
1 changed files with 2 additions and 2 deletions
|
|
@ -154,7 +154,7 @@ parse_acl(
|
|||
}
|
||||
|
||||
if( *right == '\0' ) {
|
||||
a->acl_dn_pat = ch_strdup("^$");
|
||||
a->acl_dn_pat = ch_strdup("anonymous");
|
||||
|
||||
} else if ( strcmp(right, "*") == 0
|
||||
|| strcmp(right, ".*") == 0
|
||||
|
|
@ -274,7 +274,7 @@ parse_acl(
|
|||
|
||||
} else if ( strcmp( right, "*" ) == 0 ) {
|
||||
/* dn=* */
|
||||
/* any or users? any for now */
|
||||
/* any or users? users for now */
|
||||
pat = ch_strdup( "users" );
|
||||
|
||||
} else if ( strcmp( right, ".+" ) == 0
|
||||
|
|
|
|||
Loading…
Reference in a new issue