summaryrefslogtreecommitdiff
path: root/lib/dbwrap/dbwrap_cache.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2012-06-22 15:07:44 +0930
committerRusty Russell <rusty@rustcorp.com.au>2012-06-22 07:35:17 +0200
commit945473aac0abffd8509bbeef3ed5a32737b7df51 (patch)
tree1a01de9fd747aade6fbcc3ae00545f3be7bbc415 /lib/dbwrap/dbwrap_cache.c
parente92cb556fdb5faee71f614475aaade846dcd0aed (diff)
downloadsamba-945473aac0abffd8509bbeef3ed5a32737b7df51.tar.gz
samba-945473aac0abffd8509bbeef3ed5a32737b7df51.tar.bz2
samba-945473aac0abffd8509bbeef3ed5a32737b7df51.zip
dbwrap: dbwrap_hash_size().
Implemented for ntdb and tdb; falls back to 0 for others. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/dbwrap/dbwrap_cache.c')
-rw-r--r--lib/dbwrap/dbwrap_cache.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/dbwrap/dbwrap_cache.c b/lib/dbwrap/dbwrap_cache.c
index 1badeb13b9..f2a9c5fb0b 100644
--- a/lib/dbwrap/dbwrap_cache.c
+++ b/lib/dbwrap/dbwrap_cache.c
@@ -210,6 +210,7 @@ struct db_context *db_open_cache(TALLOC_CTX *mem_ctx,
db->exists = dbwrap_cache_exists;
db->id = dbwrap_cache_id;
db->name = dbwrap_name(ctx->backing);
+ db->hash_size = dbwrap_hash_size(ctx->backing);
db->stored_callback = NULL;
db->wipe = NULL;
db->lock_order = 0;