ITS#2122 - actually use the passed in txn handle!!

This commit is contained in:
Howard Chu 2003-02-26 10:48:02 +00:00
parent 3505c326da
commit bda79780ce
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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;