summaryrefslogtreecommitdiffstats
path: root/source4/lib/ldb/tools/ldbmodify.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-12-18 14:30:11 +1100
committerAndrew Bartlett <abartlet@samba.org>2008-12-18 14:36:20 +1100
commita9cf61dbdd4cf914215723b17912f584fff151c0 (patch)
treeb10d68d5d1e519a744d26ca92f3515ddfde7bfaa /source4/lib/ldb/tools/ldbmodify.c
parent8deded43ba0ab6a31739df5ca927eed48b81393a (diff)
downloadsamba-a9cf61dbdd4cf914215723b17912f584fff151c0.tar.gz
samba-a9cf61dbdd4cf914215723b17912f584fff151c0.tar.xz
samba-a9cf61dbdd4cf914215723b17912f584fff151c0.zip
Print error strings when transactions fail in ldb tools
Diffstat (limited to 'source4/lib/ldb/tools/ldbmodify.c')
-rw-r--r--source4/lib/ldb/tools/ldbmodify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/tools/ldbmodify.c b/source4/lib/ldb/tools/ldbmodify.c
index 8b6309e016..0288e4e688 100644
--- a/source4/lib/ldb/tools/ldbmodify.c
+++ b/source4/lib/ldb/tools/ldbmodify.c
@@ -92,7 +92,7 @@ int main(int argc, const char **argv)
ldb = ldb_init(NULL, NULL);
if (ldb_transaction_start(ldb) != 0) {
- printf("Failed to start transaction\n");
+ printf("Failed to start transaction: %s\n", ldb_errstring(ldb));
exit(1);
}
@@ -114,7 +114,7 @@ int main(int argc, const char **argv)
}
if (count != 0 && ldb_transaction_commit(ldb) != 0) {
- printf("Failed to commit transaction\n");
+ printf("Failed to commit transaction: %s\n", ldb_errstring(ldb));
exit(1);
}