mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
blind fix to ITS#3069; I assume there's no reason to limit the sessionlog limit to 999
This commit is contained in:
parent
b641adad8c
commit
0505c64f08
@ -202,7 +202,6 @@ bdb_db_config(
|
||||
}
|
||||
|
||||
se_id = atoi( argv[1] );
|
||||
se_size = atoi( argv[2] );
|
||||
|
||||
if ( se_id < 0 || se_id > 999 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
@ -217,7 +216,8 @@ bdb_db_config(
|
||||
return( 1 );
|
||||
}
|
||||
|
||||
if ( se_size < 0 || se_size > 999 ) {
|
||||
se_size = atoi( argv[2] );
|
||||
if ( se_size < 0 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( CONFIG, CRIT,
|
||||
"%s: line %d: session log size %d is negative\n",
|
||||
|
Loading…
Reference in New Issue
Block a user