summaryrefslogtreecommitdiff
path: root/lib/tdb2/tools/growtdb-bench.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-09-14 07:12:13 +0930
committerRusty Russell <rusty@rustcorp.com.au>2011-09-14 07:12:13 +0930
commitab61a57e0177ff50a22a8feea38abbf02edfd5da (patch)
treefed80e291b6f924d76019914ae9dc65c5f742207 /lib/tdb2/tools/growtdb-bench.c
parentfb37849abda31b77a05718a316f52ed3fb0a8acd (diff)
downloadsamba-ab61a57e0177ff50a22a8feea38abbf02edfd5da.tar.gz
samba-ab61a57e0177ff50a22a8feea38abbf02edfd5da.tar.bz2
samba-ab61a57e0177ff50a22a8feea38abbf02edfd5da.zip
tdb2: Hand error code to logging function.
Since we've deprecated tdb_error() function (and it didn't work right from inside the logging function anyway, since we didn't set tdb->ecode yet) we need to hand it to the log function. (Imported from CCAN commit 6e3d9e8a66bf8b45150500f176452ee8e9ee9927) Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/tdb2/tools/growtdb-bench.c')
-rw-r--r--lib/tdb2/tools/growtdb-bench.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/tdb2/tools/growtdb-bench.c b/lib/tdb2/tools/growtdb-bench.c
index f7f6845a8a..ec81268bec 100644
--- a/lib/tdb2/tools/growtdb-bench.c
+++ b/lib/tdb2/tools/growtdb-bench.c
@@ -10,10 +10,12 @@
static void logfn(struct tdb_context *tdb,
enum tdb_log_level level,
+ enum TDB_ERROR ecode,
const char *message,
void *data)
{
- fprintf(stderr, "tdb:%s:%s\n", tdb_name(tdb), message);
+ fprintf(stderr, "tdb:%s:%s:%s\n",
+ tdb_name(tdb), tdb_errorstr(ecode), message);
}
int main(int argc, char *argv[])