mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
set keyword to noEstimate and document it
This commit is contained in:
parent
415a8d325f
commit
8473f6e778
2 changed files with 12 additions and 1 deletions
|
|
@ -345,6 +345,17 @@ and
|
|||
.BR timelimit ;
|
||||
no limit is set on
|
||||
.BR unchecked .
|
||||
|
||||
If
|
||||
.B pagedResults
|
||||
control is defined, additional size limits may be enforced; the syntax is
|
||||
.BR size.pr={<integer>|noEstimate} ,
|
||||
where
|
||||
.BR integer
|
||||
is the max page size if no explicit limit is set; the keyword
|
||||
.BR noEstimate
|
||||
inhibits the server to return an estimate of the total number
|
||||
of entries that will be returned.
|
||||
.RE
|
||||
.\".TP
|
||||
.\".B logfile <filename>
|
||||
|
|
|
|||
|
|
@ -570,7 +570,7 @@ parse_limit(
|
|||
return( 1 );
|
||||
}
|
||||
arg++;
|
||||
if ( strcasecmp( arg, "noEntriesLeft" ) == 0 ) {
|
||||
if ( strcasecmp( arg, "noEstimate" ) == 0 ) {
|
||||
limit->lms_s_pr_hide = 1;
|
||||
} else {
|
||||
char *next = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue