From c3868b74889ccce800557a64d2a5ae6a8891a8ee Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 17 Aug 2011 08:35:21 +0200 Subject: s3:dbwrap: move dbwrap_fetch() back to dbwrap.c, the core of the dbwrap subsystem --- source3/lib/dbwrap/dbwrap_util.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'source3/lib/dbwrap/dbwrap_util.c') diff --git a/source3/lib/dbwrap/dbwrap_util.c b/source3/lib/dbwrap/dbwrap_util.c index effcf40c6b..a950d51404 100644 --- a/source3/lib/dbwrap/dbwrap_util.c +++ b/source3/lib/dbwrap/dbwrap_util.c @@ -487,18 +487,6 @@ NTSTATUS dbwrap_store(struct db_context *db, TDB_DATA key, return status; } -TDB_DATA dbwrap_fetch(struct db_context *db, TALLOC_CTX *mem_ctx, - TDB_DATA key) -{ - TDB_DATA result; - - if (db->fetch(db, mem_ctx, key, &result) != 0) { - return make_tdb_data(NULL, 0); - } - - return result; -} - NTSTATUS dbwrap_delete_bystring(struct db_context *db, const char *key) { return dbwrap_delete(db, string_term_tdb_data(key)); -- cgit