libcli: Call dbwrap_local_open with the correct hash size
authorVolker Lendecke <vl@samba.org>
Tue, 17 Apr 2018 14:18:50 +0000 (16:18 +0200)
committerJeremy Allison <jra@samba.org>
Mon, 23 Apr 2018 23:53:18 +0000 (01:53 +0200)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
libcli/auth/schannel_state_tdb.c

index 6a19823f6393cfea7873da08656abd12b0d52a9e..4b02261663a52c36f149af25843796dd81402abe 100644 (file)
@@ -42,15 +42,24 @@ struct db_context *open_schannel_session_store(TALLOC_CTX *mem_ctx,
 {
        struct db_context *db_sc = NULL;
        char *fname = lpcfg_private_db_path(mem_ctx, lp_ctx, "schannel_store");
+       int hash_size;
 
        if (!fname) {
                return NULL;
        }
 
-       db_sc = dbwrap_local_open(mem_ctx, lp_ctx, fname, 0,
-                                 TDB_CLEAR_IF_FIRST|TDB_NOSYNC, O_RDWR|O_CREAT,
-                                 0600, DBWRAP_LOCK_ORDER_NONE,
-                                 DBWRAP_FLAG_NONE);
+       hash_size = lpcfg_tdb_hash_size(lp_ctx, fname);
+
+       db_sc = dbwrap_local_open(
+               mem_ctx,
+               lp_ctx,
+               fname,
+               hash_size,
+               TDB_CLEAR_IF_FIRST|TDB_NOSYNC,
+               O_RDWR|O_CREAT,
+               0600,
+               DBWRAP_LOCK_ORDER_NONE,
+               DBWRAP_FLAG_NONE);
 
        if (!db_sc) {
                DEBUG(0,("open_schannel_session_store: Failed to open %s - %s\n",