diff options
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/secrets.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/param/secrets.c b/source4/param/secrets.c index aaf6259ef0e..e27524e231b 100644 --- a/source4/param/secrets.c +++ b/source4/param/secrets.c @@ -59,7 +59,10 @@ bool randseed_init(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx) fname = lpcfg_private_path(mem_ctx, lp_ctx, "randseed.tdb"); - tdb = tdb_wrap_open(mem_ctx, fname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600, lp_ctx); + tdb = tdb_wrap_open_(mem_ctx, fname, + lpcfg_tdb_hash_size(lp_ctx, fname), + lpcfg_tdb_flags(lp_ctx, TDB_DEFAULT), + O_RDWR|O_CREAT, 0600); if (!tdb) { DEBUG(0,("Failed to open %s\n", fname)); |