diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-09-14 07:12:13 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-09-14 07:12:13 +0930 |
commit | ab61a57e0177ff50a22a8feea38abbf02edfd5da (patch) | |
tree | fed80e291b6f924d76019914ae9dc65c5f742207 /lib/tdb2/test | |
parent | fb37849abda31b77a05718a316f52ed3fb0a8acd (diff) | |
download | samba-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/test')
-rw-r--r-- | lib/tdb2/test/logging.c | 4 | ||||
-rw-r--r-- | lib/tdb2/test/logging.h | 1 | ||||
-rw-r--r-- | lib/tdb2/test/run-seed.c | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/lib/tdb2/test/logging.c b/lib/tdb2/test/logging.c index f2e675e922..6927592b8a 100644 --- a/lib/tdb2/test/logging.c +++ b/lib/tdb2/test/logging.c @@ -15,12 +15,14 @@ union tdb_attribute tap_log_attr = { void tap_log_fn(struct tdb_context *tdb, enum tdb_log_level level, + enum TDB_ERROR ecode, const char *message, void *priv) { if (suppress_logging) return; - diag("tdb log level %u: %s%s", level, log_prefix, message); + diag("tdb log level %u: %s: %s%s", + level, tdb_errorstr(ecode), log_prefix, message); if (log_last) free(log_last); log_last = strdup(message); diff --git a/lib/tdb2/test/logging.h b/lib/tdb2/test/logging.h index 0fd59ba6bb..2dfea145c3 100644 --- a/lib/tdb2/test/logging.h +++ b/lib/tdb2/test/logging.h @@ -12,5 +12,6 @@ extern char *log_last; void tap_log_fn(struct tdb_context *tdb, enum tdb_log_level level, + enum TDB_ERROR ecode, const char *message, void *priv); #endif /* TDB2_TEST_LOGGING_H */ diff --git a/lib/tdb2/test/run-seed.c b/lib/tdb2/test/run-seed.c index a9b370b6e5..e1c23a0c57 100644 --- a/lib/tdb2/test/run-seed.c +++ b/lib/tdb2/test/run-seed.c @@ -14,6 +14,7 @@ static int log_count = 0; /* Normally we get a log when setting random seed. */ static void my_log_fn(struct tdb_context *tdb, enum tdb_log_level level, + enum TDB_ERROR ecode, const char *message, void *priv) { log_count++; |