From: Howard Chu Date: Wed, 26 Feb 2003 10:48:02 +0000 (+0000) Subject: ITS#2122 - actually use the passed in txn handle!! X-Git-Tag: NO_SLAP_OP_BLOCKS~285 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bda79780ce3f7090b5cddd2b5ad5dc9e602fd949;p=openldap ITS#2122 - actually use the passed in txn handle!! --- diff --git a/servers/slapd/back-bdb/attribute.c b/servers/slapd/back-bdb/attribute.c index 10ef737fae..a98a16fa85 100644 --- a/servers/slapd/back-bdb/attribute.c +++ b/servers/slapd/back-bdb/attribute.c @@ -97,7 +97,7 @@ bdb_attribute( } else { dn2entry_retry: /* can we find entry */ - rc = bdb_dn2entry_r( be, NULL, entry_ndn, &e, NULL, 0, locker, &lock ); + rc = bdb_dn2entry_r( be, txn, entry_ndn, &e, NULL, 0, locker, &lock ); switch( rc ) { case DB_NOTFOUND: case 0: diff --git a/servers/slapd/back-bdb/group.c b/servers/slapd/back-bdb/group.c index 0f38e6d349..1df9e776ed 100644 --- a/servers/slapd/back-bdb/group.c +++ b/servers/slapd/back-bdb/group.c @@ -107,7 +107,7 @@ bdb_group( } else { dn2entry_retry: /* can we find group entry */ - rc = bdb_dn2entry_r( be, NULL, gr_ndn, &e, NULL, 0, locker, &lock ); + rc = bdb_dn2entry_r( be, txn, gr_ndn, &e, NULL, 0, locker, &lock ); if( rc ) { if ( rc == DB_LOCK_DEADLOCK || rc == DB_LOCK_NOTGRANTED ) goto dn2entry_retry;