mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 16:19:35 -05:00
Add missing "disallow bind_anon" directive (ITS#721)
This commit is contained in:
parent
8d2c074a80
commit
d463b3cab1
1 changed files with 3 additions and 0 deletions
|
|
@ -531,6 +531,9 @@ read_config( const char *fname )
|
|||
if( strcasecmp( cargv[i], "bind_v2" ) == 0 ) {
|
||||
disallows |= SLAP_DISALLOW_BIND_V2;
|
||||
|
||||
} else if( strcasecmp( cargv[i], "bind_anon" ) == 0 ) {
|
||||
disallows |= SLAP_DISALLOW_BIND_ANON;
|
||||
|
||||
} else if( strcasecmp( cargv[i], "bind_anon_cred" ) == 0 ) {
|
||||
disallows |= SLAP_DISALLOW_BIND_ANON_CRED;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue