summaryrefslogtreecommitdiff
path: root/source3/groupdb
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-03-26 11:13:47 +0100
committerMichael Adam <obnox@samba.org>2008-03-26 11:15:03 +0100
commitf1c844c16806d41256fe442fb0fbd237dfef9e1f (patch)
tree6b3ba64a0998fb8acdd90e020800b4346bce7ee0 /source3/groupdb
parentda27c770467d7e0494fbea70d5e424e76851819f (diff)
downloadsamba-f1c844c16806d41256fe442fb0fbd237dfef9e1f.tar.gz
samba-f1c844c16806d41256fe442fb0fbd237dfef9e1f.tar.bz2
samba-f1c844c16806d41256fe442fb0fbd237dfef9e1f.zip
util_tdb: remove trivial and unused tdb_wipe().
It has been replaced by tdb_wipe_all(). Michael (This used to be commit cdde2e4eaca51d51f036ad99d55df7bfd6535b03)
Diffstat (limited to 'source3/groupdb')
-rw-r--r--source3/groupdb/mapping_tdb.c2
1 files changed, 1 insertions, 1 deletions
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);
}