mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
ITS#7449 fix signedness for index_substr_any_*
Of course, no one would ever have any legitimate reason to set these items to anywhere near such extreme values in the first place.
This commit is contained in:
parent
c728ebf586
commit
fc0563ce53
@ -401,13 +401,13 @@ static ConfigTable config_back_cf_table[] = {
|
||||
{ "index_substr_if_maxlen", "max", 2, 2, 0, ARG_UINT|ARG_NONZERO|ARG_MAGIC|CFG_SSTR_IF_MAX,
|
||||
&config_generic, "( OLcfgGlAt:21 NAME 'olcIndexSubstrIfMaxLen' "
|
||||
"SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
|
||||
{ "index_substr_any_len", "len", 2, 2, 0, ARG_INT|ARG_NONZERO,
|
||||
{ "index_substr_any_len", "len", 2, 2, 0, ARG_UINT|ARG_NONZERO,
|
||||
&index_substr_any_len, "( OLcfgGlAt:22 NAME 'olcIndexSubstrAnyLen' "
|
||||
"SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
|
||||
{ "index_substr_any_step", "step", 2, 2, 0, ARG_INT|ARG_NONZERO,
|
||||
{ "index_substr_any_step", "step", 2, 2, 0, ARG_UINT|ARG_NONZERO,
|
||||
&index_substr_any_step, "( OLcfgGlAt:23 NAME 'olcIndexSubstrAnyStep' "
|
||||
"SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
|
||||
{ "index_intlen", "len", 2, 2, 0, ARG_INT|ARG_MAGIC|CFG_IX_INTLEN,
|
||||
{ "index_intlen", "len", 2, 2, 0, ARG_UINT|ARG_MAGIC|CFG_IX_INTLEN,
|
||||
&config_generic, "( OLcfgGlAt:84 NAME 'olcIndexIntLen' "
|
||||
"SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
|
||||
{ "lastmod", "on|off", 2, 2, 0, ARG_DB|ARG_ON_OFF|ARG_MAGIC|CFG_LASTMOD,
|
||||
|
Loading…
Reference in New Issue
Block a user