diff options
author | Michael Adam <obnox@samba.org> | 2008-03-26 10:50:08 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-03-26 10:50:35 +0100 |
commit | da27c770467d7e0494fbea70d5e424e76851819f (patch) | |
tree | fb5bdc94d4e441acf96960a08847e7d07304fbe7 /source3/intl | |
parent | 6efe4873dcaa78520840a57264881d7b47036b91 (diff) | |
download | samba-da27c770467d7e0494fbea70d5e424e76851819f.tar.gz |
use tdb_wipe_all() instead of tdb_wipe() - it is faster...
Michael
(This used to be commit 3d2fdcd50fdbfb66a14360516836445d47eceeb0)
Diffstat (limited to 'source3/intl')
-rw-r--r-- | source3/intl/lang_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/intl/lang_tdb.c b/source3/intl/lang_tdb.c index 4e4a3a5e207..499b9eb87da 100644 --- a/source3/intl/lang_tdb.c +++ b/source3/intl/lang_tdb.c @@ -45,7 +45,7 @@ static bool load_msg(const char *msg_file) } /* wipe the db */ - tdb_wipe(tdb); + tdb_wipe_all(tdb); msgid = NULL; |