From ab61a57e0177ff50a22a8feea38abbf02edfd5da Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 14 Sep 2011 07:12:13 +0930 Subject: 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 --- lib/tdb2/test/logging.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/tdb2/test/logging.h') 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 */ -- cgit