mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
fixed bug in reading size/time limits without style, in the form 'size=number', 'time=number'
This commit is contained in:
parent
a038ef68e6
commit
7b4b4b34c4
1 changed files with 2 additions and 0 deletions
|
|
@ -436,6 +436,7 @@ parse_limit(
|
|||
}
|
||||
|
||||
} else if ( arg[0] == '=' ) {
|
||||
arg++;
|
||||
limit->lms_t_soft = atoi( arg );
|
||||
limit->lms_t_hard = 0;
|
||||
|
||||
|
|
@ -487,6 +488,7 @@ parse_limit(
|
|||
}
|
||||
|
||||
} else if ( arg[0] == '=' ) {
|
||||
arg++;
|
||||
limit->lms_s_soft = atoi( arg );
|
||||
limit->lms_s_hard = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue