summaryrefslogtreecommitdiffstats
path: root/src/wrap.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@dahyabhai.net>2012-01-16 13:22:52 -0500
committerNalin Dahyabhai <nalin@dahyabhai.net>2012-01-16 13:22:52 -0500
commitc0b3083e1e71e90ce83a6f33fe8bebb9c6e17722 (patch)
treeb68d7bca8b84d782279d8e14983f8a9f9e046276 /src/wrap.c
parentede94704337ca437e309a8d211d9bb701f60ea3d (diff)
downloadslapi-nis-c0b3083e1e71e90ce83a6f33fe8bebb9c6e17722.tar.gz
slapi-nis-c0b3083e1e71e90ce83a6f33fe8bebb9c6e17722.tar.xz
slapi-nis-c0b3083e1e71e90ce83a6f33fe8bebb9c6e17722.zip
- DS doesn't do nested transactions (yet?), so copy the transaction ID verbatim
Diffstat (limited to 'src/wrap.c')
-rw-r--r--src/wrap.c2
1 files changed, 1 insertions, 1 deletions
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