Skip to content
Snippets Groups Projects
Commit 3831d982 authored by Howard Chu's avatar Howard Chu
Browse files

Turn these functions on again. Need backend_attribute for SASLauthz stuff.

Fix to work with NULL op.
parent a067d64c
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ bdb_attribute(
BerVarray *vals )
{
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
struct bdb_op_info *boi = (struct bdb_op_info *) op->o_private;
struct bdb_op_info *boi = NULL;
DB_TXN *txn = NULL;
Entry *e;
int i, j = 0, rc;
......@@ -60,6 +60,7 @@ bdb_attribute(
target ? target->e_ndn : "", 0, 0 );
#endif
if( op ) boi = (struct bdb_op_info *) op->o_private;
if( boi != NULL && be == boi->boi_bdb ) {
txn = boi->boi_txn;
}
......
......@@ -34,7 +34,7 @@ bdb_group(
)
{
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
struct bdb_op_info *boi = (struct bdb_op_info *) op->o_private;
struct bdb_op_info *boi = NULL;
DB_TXN *txn = NULL;
Entry *e;
int rc = 1;
......@@ -71,6 +71,7 @@ bdb_group(
target->e_ndn, 0, 0 );
#endif
if( op ) boi = (struct bdb_op_info *) op->o_private;
if( boi != NULL && be == boi->boi_bdb ) {
txn = boi->boi_txn;
}
......
......@@ -561,7 +561,7 @@ bdb_initialize(
bi->bi_extended = bdb_extended;
#if 0
#if 1
/*
* these routines (and their callers) are not yet designed
* to work with transaction. Using them may cause deadlock.
......
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