blind fix to ITS#3069; I assume there's no reason to limit the sessionlog limit to 999

This commit is contained in:
Pierangelo Masarati 2004-04-09 11:22:07 +00:00
parent b641adad8c
commit 0505c64f08

View File

@ -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",