mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
change "substr" to imply initial, any, final indexing.
This commit is contained in:
parent
02f888c563
commit
a7ec3506cf
1 changed files with 5 additions and 2 deletions
|
|
@ -134,8 +134,11 @@ LDAP_SLAPD_F (int) slap_debug;
|
|||
#define SLAP_INDEX_SUBSTR_INITIAL ( SLAP_INDEX_SUBSTR | 0x0100UL )
|
||||
#define SLAP_INDEX_SUBSTR_ANY ( SLAP_INDEX_SUBSTR | 0x0200UL )
|
||||
#define SLAP_INDEX_SUBSTR_FINAL ( SLAP_INDEX_SUBSTR | 0x0400UL )
|
||||
#define SLAP_INDEX_SUBSTR_DEFAULT ( SLAP_INDEX_SUBSTR \
|
||||
| SLAP_INDEX_SUBSTR_INITIAL | SLAP_INDEX_SUBSTR_FINAL )
|
||||
#define SLAP_INDEX_SUBSTR_DEFAULT \
|
||||
( SLAP_INDEX_SUBSTR \
|
||||
| SLAP_INDEX_SUBSTR_INITIAL \
|
||||
| SLAP_INDEX_SUBSTR_ANY \
|
||||
| SLAP_INDEX_SUBSTR_FINAL )
|
||||
|
||||
#define SLAP_INDEX_SUBSTR_MINLEN 2
|
||||
#define SLAP_INDEX_SUBSTR_MAXLEN 4
|
||||
|
|
|
|||
Loading…
Reference in a new issue