From f1c844c16806d41256fe442fb0fbd237dfef9e1f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 26 Mar 2008 11:13:47 +0100 Subject: util_tdb: remove trivial and unused tdb_wipe(). It has been replaced by tdb_wipe_all(). Michael (This used to be commit cdde2e4eaca51d51f036ad99d55df7bfd6535b03) --- source3/groupdb/mapping_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/groupdb/mapping_tdb.c') diff --git a/source3/groupdb/mapping_tdb.c b/source3/groupdb/mapping_tdb.c index 6732e3c42e..9f2b250cca 100644 --- a/source3/groupdb/mapping_tdb.c +++ b/source3/groupdb/mapping_tdb.c @@ -76,7 +76,7 @@ static bool init_group_mapping(void) /* if its an unknown version we remove everthing in the db */ if (vers_id != DATABASE_VERSION_V2) { - tdb_wipe(tdb); + tdb_wipe_all(tdb); tdb_store_int32(tdb, vstring, DATABASE_VERSION_V2); } -- cgit