Skip to content
Snippets Groups Projects
Commit c0e6911d authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

ITS#374: index presence filter bug fix.

parent 32190a29
No related branches found
Tags OPENLDAP_REL_ENG_2_0_3
No related merge requests found
OpenLDAP Change Log OpenLDAP Change Log
Changes included in OpenLDAP 1.2.9 Engineering
CVS Tag: OPENLDAP_REL_ENG_1_2
Changes included in OpenLDAP 1.2.8 Changes included in OpenLDAP 1.2.8
CVS Tag: OPENLDAP_REL_ENG_1_2_8 CVS Tag: OPENLDAP_REL_ENG_1_2_8
Fixed slapd lint Fixed slapd lint
...@@ -12,6 +9,7 @@ Changes included in OpenLDAP 1.2.8 ...@@ -12,6 +9,7 @@ Changes included in OpenLDAP 1.2.8
Fixed lber/io.c Cray T90 specific pointer arithmetic problem (ITS#325) Fixed lber/io.c Cray T90 specific pointer arithmetic problem (ITS#325)
Fixed s_addr dereferencing (ITS#340) Fixed s_addr dereferencing (ITS#340)
Fixed ud strstr crash (ITS#328) Fixed ud strstr crash (ITS#328)
Fixed back-ldbm presence index bug (ITS#394)
Fixed -lthread rdwr 2-writer bug (ITS#395) Fixed -lthread rdwr 2-writer bug (ITS#395)
Added TCP_NODELAY support Added TCP_NODELAY support
Changed slapd to apply ACL to lastmod attributes Changed slapd to apply ACL to lastmod attributes
......
...@@ -132,7 +132,7 @@ presence_candidates( ...@@ -132,7 +132,7 @@ presence_candidates(
Debug( LDAP_DEBUG_TRACE, "=> presence_candidates\n", 0, 0, 0 ); Debug( LDAP_DEBUG_TRACE, "=> presence_candidates\n", 0, 0, 0 );
idl = index_read( be, type, 0, "*" ); idl = index_read( be, type, INDEX_PRESENCE, "*" );
Debug( LDAP_DEBUG_TRACE, "<= presence_candidates %lu\n", Debug( LDAP_DEBUG_TRACE, "<= presence_candidates %lu\n",
idl ? ID_BLOCK_NIDS(idl) : 0, 0, 0 ); idl ? ID_BLOCK_NIDS(idl) : 0, 0, 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment