From b77e99db709d65c9114bfc765a1ed41c293583dd Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 5 Jul 2010 17:30:40 +0200 Subject: [PATCH] Revert "TODO: s4:ldb: use transaction for ldbmodify" This reverts commit ff150c6eefc51a7445ef5121429d8edc90cfce01. --- source4/lib/ldb/tools/ldbmodify.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/source4/lib/ldb/tools/ldbmodify.c b/source4/lib/ldb/tools/ldbmodify.c index 8badcefbae90..ecbdadfd6544 100644 --- a/source4/lib/ldb/tools/ldbmodify.c +++ b/source4/lib/ldb/tools/ldbmodify.c @@ -100,11 +100,6 @@ int main(int argc, const char **argv) options = ldb_cmdline_process(ldb, argc, argv, usage); - if (ldb_transaction_start(ldb) != 0) { - printf("Failed to start transaction: %s\n", ldb_errstring(ldb)); - exit(1); - } - if (options->argc == 0) { ret = process_file(ldb, stdin, &count); } else { @@ -121,15 +116,6 @@ int main(int argc, const char **argv) } } - if (count != 0) { - if (ldb_transaction_commit(ldb) != 0) { - printf("Failed to commit transaction: %s\n", ldb_errstring(ldb)); - exit(1); - } - } else { - ldb_transaction_cancel(ldb); - } - talloc_free(mem_ctx); printf("Modified %d records with %d failures\n", count, failures); -- 2.34.1