diff options
Diffstat (limited to 'source3/lib/util_tdb.c')
-rw-r--r-- | source3/lib/util_tdb.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/source3/lib/util_tdb.c b/source3/lib/util_tdb.c index e9c2d31637..ce5e77f8f4 100644 --- a/source3/lib/util_tdb.c +++ b/source3/lib/util_tdb.c @@ -719,23 +719,6 @@ TDB_CONTEXT *tdb_open_log(const char *name, int hash_size, int tdb_flags, return tdb; } -/**************************************************************************** - Allow tdb_delete to be used as a tdb_traversal_fn. -****************************************************************************/ - -static int tdb_traverse_delete_fn(TDB_CONTEXT *the_tdb, TDB_DATA key, - TDB_DATA dbuf, void *state) -{ - return tdb_delete(the_tdb, key); -} - -int tdb_wipe(TDB_CONTEXT *tdb) -{ - return tdb_traverse(tdb, tdb_traverse_delete_fn, NULL); -} - - - /** * Search across the whole tdb for keys that match the given pattern |