mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Do not maintain a presence search on 'objectclass' as all entries
*should* have an 'objectclass' attribute present.
This commit is contained in:
parent
bacc581531
commit
6f497089f5
2 changed files with 2 additions and 2 deletions
|
|
@ -176,7 +176,7 @@ bdb2i_back_db_init_internal(
|
|||
li->li_directory = DEFAULT_DB_DIRECTORY;
|
||||
|
||||
argv[ 0 ] = "objectclass";
|
||||
argv[ 1 ] = "pres,eq";
|
||||
argv[ 1 ] = "eq";
|
||||
argv[ 2 ] = NULL;
|
||||
bdb2i_attr_index_config( li, "ldbm objectclass initialization",
|
||||
0, 2, argv, 1 );
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ ldbm_back_db_init(
|
|||
li->li_directory = ch_strdup( DEFAULT_DB_DIRECTORY );
|
||||
|
||||
argv[ 0 ] = "objectclass";
|
||||
argv[ 1 ] = "pres,eq";
|
||||
argv[ 1 ] = "eq";
|
||||
argv[ 2 ] = NULL;
|
||||
attr_index_config( li, "ldbm objectclass initialization",
|
||||
0, 2, argv, 1 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue