mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-16 03:44:58 -05:00
ITS#3616 don't index the dummy context entry
This commit is contained in:
parent
d9ab73837a
commit
5ef9978afe
1 changed files with 4 additions and 0 deletions
|
|
@ -340,6 +340,10 @@ int bdb_index_values(
|
|||
{
|
||||
int rc;
|
||||
|
||||
/* Never index ID 0 */
|
||||
if ( id == 0 )
|
||||
return 0;
|
||||
|
||||
rc = index_at_values( op, txn, desc,
|
||||
desc->ad_type, &desc->ad_tags,
|
||||
vals, id, opid );
|
||||
|
|
|
|||
Loading…
Reference in a new issue