From 28e676d9c341664d08baa77d6f48be061f7a5690 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 4 Dec 2001 11:25:44 +0000 Subject: Implement suggestion from tridge to leave the old tdb_open interface as it was, and add tdb_open_ex() which takes a log callback. I guess this makes more sense since it's a public interface. (This used to be commit 391a65395e6cdc0300f81eb1072a3366cacd1203) --- source3/tdb/tdbtorture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/tdb/tdbtorture.c') diff --git a/source3/tdb/tdbtorture.c b/source3/tdb/tdbtorture.c index 4e12386d73..1cce60dc22 100644 --- a/source3/tdb/tdbtorture.c +++ b/source3/tdb/tdbtorture.c @@ -177,8 +177,8 @@ int main(int argc, char *argv[]) if ((pids[i+1]=fork()) == 0) break; } - db = tdb_open("torture.tdb", 2, TDB_CLEAR_IF_FIRST, - O_RDWR | O_CREAT, 0600, tdb_log_to_stderr); + db = tdb_open_ex("torture.tdb", 2, TDB_CLEAR_IF_FIRST, + O_RDWR | O_CREAT, 0600, tdb_log_to_stderr); if (!db) { fatal("db open failed"); } -- cgit