s3:idmap_tdb2: use the right talloc context for db_open in idmap_tdb2_open_db()
authorMichael Adam <obnox@samba.org>
Thu, 17 Jun 2010 06:04:53 +0000 (08:04 +0200)
committerMichael Adam <obnox@samba.org>
Sat, 14 Aug 2010 00:10:45 +0000 (02:10 +0200)
source3/winbindd/idmap_tdb2.c

index f386ec34023fe2241544b7b586c5410cbdfa267b..85f3f03ea0a9a5f38bbb75e631ac545afc16d6e7 100644 (file)
@@ -112,7 +112,7 @@ static NTSTATUS idmap_tdb2_open_db(struct idmap_domain *dom)
        NT_STATUS_HAVE_NO_MEMORY(db_path);
 
        /* Open idmap repository */
-       ctx->db = db_open(NULL, db_path, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0644);
+       ctx->db = db_open(ctx, db_path, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0644);
        TALLOC_FREE(db_path);
 
        if (ctx->db == NULL) {