Silently restrict index_intlen to 4-255.

This commit is contained in:
Howard Chu 2007-11-21 03:24:49 +00:00
parent 49057266a6
commit aa2cc83d27

View File

@ -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;