diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-04-04 12:51:00 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-10 16:40:05 +1000 |
commit | 57341c0f29911d09e511c840386a35290febb9f9 (patch) | |
tree | bf123480733183f26f4b5970c42e16dfd559339d /lib/ldb/tools/ldbadd.c | |
parent | d425a4cd3dded853aaefbca8873c95845933d383 (diff) | |
download | samba-57341c0f29911d09e511c840386a35290febb9f9.tar.gz samba-57341c0f29911d09e511c840386a35290febb9f9.tar.bz2 samba-57341c0f29911d09e511c840386a35290febb9f9.zip |
Revert "ldb: Permit desactivation of autocomit for every ldb_xxx_ctrl function"
This reverts commit 40a4aea8918c2637703af03383f440d068820e48.
Autocommit is important, as otherwise an ldb module could error out
during an operation, and leave an corrupt database.
Andrew Bartlett
Diffstat (limited to 'lib/ldb/tools/ldbadd.c')
-rw-r--r-- | lib/ldb/tools/ldbadd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldb/tools/ldbadd.c b/lib/ldb/tools/ldbadd.c index a073f519ed..47fd261841 100644 --- a/lib/ldb/tools/ldbadd.c +++ b/lib/ldb/tools/ldbadd.c @@ -79,7 +79,7 @@ static int process_file(struct ldb_context *ldb, FILE *f, unsigned int *count) continue; } - ret = ldb_add_ctrl(ldb, ldif->msg,req_ctrls, true); + ret = ldb_add_ctrl(ldb, ldif->msg,req_ctrls); if (ret != LDB_SUCCESS) { fprintf(stderr, "ERR: %s : \"%s\" on DN %s\n", ldb_strerror(ret), ldb_errstring(ldb), |