From c0b3083e1e71e90ce83a6f33fe8bebb9c6e17722 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Mon, 16 Jan 2012 13:22:52 -0500 Subject: - DS doesn't do nested transactions (yet?), so copy the transaction ID verbatim --- src/wrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrap.c b/src/wrap.c index 1dbd4b5..e86faf3 100644 --- a/src/wrap.c +++ b/src/wrap.c @@ -280,7 +280,7 @@ wrap_pblock_new(Slapi_PBlock *parent) void *txn; slapi_pblock_get(parent, SLAPI_TXN, &txn); if (txn != NULL) { - slapi_pblock_set(ret, SLAPI_PARENT_TXN, &txn); + slapi_pblock_set(ret, SLAPI_TXN, &txn); } } #endif -- cgit