mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 10:09:43 -05:00
Fix maxDeref directive
This commit is contained in:
parent
d5b1892ccc
commit
a11630f9b8
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ read_config( char *fname )
|
|||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: depth line must appear inside a database definition (ignored)\n",
|
||||
fname, lineno, 0 );
|
||||
} else if ((i = atoi(cargv[i])) < 0) {
|
||||
} else if ((i = atoi(cargv[1])) < 0) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: depth must be positive (ignored)\n",
|
||||
fname, lineno, 0 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue