r26238: Add a loadparm context parameter to torture_context, remove more uses of...
[samba.git] / source4 / torture / libnet / userman.c
index e834938bc57f5489c0fbf36b9840aeb4ce0243ba..0d08284a9f955e2220bd1ac36221093fd3b84023 100644 (file)
@@ -325,7 +325,7 @@ bool torture_useradd(struct torture_context *torture)
                return false;
        }
 
-       domain_name.string = lp_workgroup(global_loadparm);
+       domain_name.string = lp_workgroup(torture->lp_ctx);
        if (!test_opendomain(p, mem_ctx, &h, &domain_name, &sid)) {
                ret = false;
                goto done;
@@ -384,7 +384,7 @@ bool torture_userdel(struct torture_context *torture)
                return false;
        }
 
-       domain_name.string = lp_workgroup(global_loadparm);
+       domain_name.string = lp_workgroup(torture->lp_ctx);
        if (!test_opendomain(p, mem_ctx, &h, &domain_name, &sid)) {
                ret = false;
                goto done;
@@ -430,7 +430,7 @@ bool torture_usermod(struct torture_context *torture)
                goto done;
        }
 
-       domain_name.string = lp_workgroup(global_loadparm);
+       domain_name.string = lp_workgroup(torture->lp_ctx);
        name = talloc_strdup(mem_ctx, TEST_USERNAME);
 
        if (!test_opendomain(p, mem_ctx, &h, &domain_name, &sid)) {