mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Silently restrict index_intlen to 4-255.
This commit is contained in:
parent
49057266a6
commit
aa2cc83d27
1 changed files with 2 additions and 0 deletions
|
|
@ -1515,6 +1515,8 @@ config_generic(ConfigArgs *c) {
|
|||
} else {
|
||||
if ( c->value_int < 4 )
|
||||
c->value_int = 4;
|
||||
else if ( c->value_int > 255 )
|
||||
c->value_int = 255;
|
||||
slap_schema.si_mr_integerMatch->smr_usage |= SLAP_MR_ORDERED_INDEX;
|
||||
}
|
||||
index_intlen = c->value_int;
|
||||
|
|
|
|||
Loading…
Reference in a new issue