Full_Name: Emmanuel Lecharny
Version: 2.4.40
OS:
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (212.195.127.200)
There is a missing parameter description in the slapd-config man page, on the
olcSizeLimit parameter.
The doc says :
"The syntax size.prtotal={<integer>|unlimited|disabled}..."
when the code is also checking for an 'hard' value :
} else if ( STRSTART( arg, "prtotal=" ) ) {
arg += STRLENOF( "prtotal=" );
...
} else if ( strcasecmp( arg, "hard" ) == 0 ) {
limit->lms_s_pr_total = 0;