s4-loadparm: 2nd half of lp_ to lpcfg_ conversion
[mdw/samba-autobuild/.git] / source4 / torture / libnet / libnet_group.c
index 6acb3d2f60e4327d6efd3fabc3241f5aac7d5ff8..f76587c1083914fb43d0bd9ffabe78ce8afaec52 100644 (file)
@@ -53,7 +53,7 @@ bool torture_groupinfo_api(struct torture_context *torture)
                return false;
        }
 
-       domain_name.string = lp_workgroup(torture->lp_ctx);
+       domain_name.string = lpcfg_workgroup(torture->lp_ctx);
        if (!test_domain_open(torture, p->binding_handle, &domain_name, prep_mem_ctx, &h, NULL)) {
                ret = false;
                goto done;
@@ -116,7 +116,7 @@ bool torture_grouplist(struct torture_context *torture)
        ctx = libnet_context_init(torture->ev, torture->lp_ctx);
        ctx->cred = cmdline_credentials;
 
-       domain_name.string = lp_workgroup(torture->lp_ctx);
+       domain_name.string = lpcfg_workgroup(torture->lp_ctx);
        mem_ctx = talloc_init("torture group list");
 
        ZERO_STRUCT(req);
@@ -180,7 +180,7 @@ bool torture_creategroup(struct torture_context *torture)
        ctx->cred = cmdline_credentials;
 
        req.in.group_name = TEST_GROUPNAME;
-       req.in.domain_name = lp_workgroup(torture->lp_ctx);
+       req.in.domain_name = lpcfg_workgroup(torture->lp_ctx);
        req.out.error_string = NULL;
 
        status = libnet_CreateGroup(ctx, mem_ctx, &req);