From e92cb556fdb5faee71f614475aaade846dcd0aed Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 22 Jun 2012 15:07:44 +0930 Subject: dbwrap: dbwrap_name(). Useful for debug messages: particularly once we start switching between .tdb and .ntdb files. Signed-off-by: Rusty Russell --- lib/dbwrap/dbwrap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/dbwrap/dbwrap.h') diff --git a/lib/dbwrap/dbwrap.h b/lib/dbwrap/dbwrap.h index 366e657680..796475d3e2 100644 --- a/lib/dbwrap/dbwrap.h +++ b/lib/dbwrap/dbwrap.h @@ -81,7 +81,7 @@ NTSTATUS dbwrap_transaction_start_nonblock(struct db_context *db); int dbwrap_transaction_commit(struct db_context *db); int dbwrap_transaction_cancel(struct db_context *db); void dbwrap_db_id(struct db_context *db, const uint8_t **id, size_t *idlen); - +const char *dbwrap_name(struct db_context *db); /* The following definitions come from lib/dbwrap_util.c */ -- cgit