From c99b3100632227dd32c11676b76343f2523cf0de Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 20 Nov 2009 11:34:24 +1100 Subject: s4-ldb: when -v is specified, show progress of ldbadd/ldbmodify This is useful for speed tests with large numbers of records. --- source4/lib/ldb/tools/ldbadd.c | 5 ++++- source4/lib/ldb/tools/ldbmodify.c | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/source4/lib/ldb/tools/ldbadd.c b/source4/lib/ldb/tools/ldbadd.c index f022486db8..a87c99aaee 100644 --- a/source4/lib/ldb/tools/ldbadd.c +++ b/source4/lib/ldb/tools/ldbadd.c @@ -35,6 +35,7 @@ #include "tools/cmdline.h" static int failures; +static struct ldb_cmdline *options; static void usage(void) { @@ -69,6 +70,9 @@ static int process_file(struct ldb_context *ldb, FILE *f, int *count) failures++; } else { (*count)++; + if (options->verbose) { + printf("Added %s\n", ldb_dn_get_linearized(ldif->msg->dn)); + } } ldb_ldif_read_free(ldb, ldif); } @@ -82,7 +86,6 @@ int main(int argc, const char **argv) { struct ldb_context *ldb; int i, ret=0, count=0; - struct ldb_cmdline *options; ldb = ldb_init(NULL, NULL); diff --git a/source4/lib/ldb/tools/ldbmodify.c b/source4/lib/ldb/tools/ldbmodify.c index d0bca0479b..4936880d09 100644 --- a/source4/lib/ldb/tools/ldbmodify.c +++ b/source4/lib/ldb/tools/ldbmodify.c @@ -35,6 +35,7 @@ #include "tools/cmdline.h" static int failures; +static struct ldb_cmdline *options; static void usage(void) { @@ -71,6 +72,9 @@ static int process_file(struct ldb_context *ldb, FILE *f, int *count) failures++; } else { (*count)++; + if (options->verbose) { + printf("Modified %s\n", ldb_dn_get_linearized(ldif->msg->dn)); + } } ldb_ldif_read_free(ldb, ldif); } @@ -83,7 +87,6 @@ int main(int argc, const char **argv) struct ldb_context *ldb; int count=0; int i, ret=LDB_SUCCESS; - struct ldb_cmdline *options; ldb = ldb_init(NULL, NULL); -- cgit