Fixed back-bdb/hdb slapcat checkpoint on close (ITS#3703)
Fixed back-ldap/back-meta debug output of NULL strings (ITS#3698)
Fixed back-meta sizelimit bug (ITS#3720)
+ Fixed back-meta/backglue sizelimit interaction (ITS#3724)
Fixed syncrepl runqueue (ITS#3542)
Fixed ACL val default style parsing crasher (ITS#3700)
Build Environment
goto finish;
} else if ( rc == LDAP_RES_SEARCH_ENTRY ) {
- if ( op->ors_slimit > 0 && rs->sr_nentries == op->ors_slimit )
- {
+ if ( --op->ors_slimit == -1 ) {
ldap_msgfree( res );
res = NULL;
* entry that has the base DN
*/
if ( op->ors_scope == LDAP_SCOPE_BASE
- && rs->sr_nentries > 0 ) {
+ && rs->sr_nentries > 0 )
+ {
candidates = 0;
sres = LDAP_SUCCESS;
break;