From 1abdd9b2bb09d072496db5207814aefefe403f60 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 6 Jul 2011 16:40:21 +0200 Subject: s3:dbwrap: move db_open() to a file dbwrap_open.c of its own. Also start new folder lib/dbwrap/ where dbwrap_open.c is stored and make the fallbacke implementation functoins non-static and create a dbwrap_private.h header file that contains their prototypes. --- source3/include/dbwrap.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source3/include') diff --git a/source3/include/dbwrap.h b/source3/include/dbwrap.h index 303a554938..194692ca60 100644 --- a/source3/include/dbwrap.h +++ b/source3/include/dbwrap.h @@ -58,11 +58,6 @@ struct db_context { bool db_is_local(const char *name); -struct db_context *db_open(TALLOC_CTX *mem_ctx, - const char *name, - int hash_size, int tdb_flags, - int open_flags, mode_t mode); - struct db_context *db_open_rbt(TALLOC_CTX *mem_ctx); struct db_context *db_open_tdb(TALLOC_CTX *mem_ctx, -- cgit