diff options
Diffstat (limited to 'source3/winbindd/winbindd_msrpc.c')
-rw-r--r-- | source3/winbindd/winbindd_msrpc.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source3/winbindd/winbindd_msrpc.c b/source3/winbindd/winbindd_msrpc.c index 426d64cf1f..9aef7ccdff 100644 --- a/source3/winbindd/winbindd_msrpc.c +++ b/source3/winbindd/winbindd_msrpc.c @@ -76,7 +76,7 @@ static NTSTATUS msrpc_query_user_list(struct winbindd_domain *domain, goto done; } - status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + status = cm_connect_sam(domain, tmp_ctx, false, &samr_pipe, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -135,7 +135,7 @@ static NTSTATUS msrpc_enum_dom_groups(struct winbindd_domain *domain, goto done; } - status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + status = cm_connect_sam(domain, tmp_ctx, false, &samr_pipe, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -194,7 +194,7 @@ static NTSTATUS msrpc_enum_local_groups(struct winbindd_domain *domain, goto done; } - status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + status = cm_connect_sam(domain, tmp_ctx, false, &samr_pipe, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -452,7 +452,7 @@ static NTSTATUS msrpc_query_user(struct winbindd_domain *domain, } /* no cache; hit the wire */ - status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + status = cm_connect_sam(domain, tmp_ctx, false, &samr_pipe, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -512,7 +512,7 @@ static NTSTATUS msrpc_lookup_usergroups(struct winbindd_domain *domain, } /* no cache; hit the wire */ - status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + status = cm_connect_sam(domain, tmp_ctx, false, &samr_pipe, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -575,7 +575,7 @@ static NTSTATUS msrpc_lookup_useraliases(struct winbindd_domain *domain, goto done; } - status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + status = cm_connect_sam(domain, tmp_ctx, false, &samr_pipe, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -641,7 +641,7 @@ static NTSTATUS msrpc_lookup_groupmem(struct winbindd_domain *domain, *num_names = 0; - result = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol); + result = cm_connect_sam(domain, mem_ctx, false, &cli, &dom_pol); if (!NT_STATUS_IS_OK(result)) return result; @@ -903,7 +903,7 @@ static NTSTATUS msrpc_sequence_number(struct winbindd_domain *domain, } #endif /* HAVE_LDAP */ - status = cm_connect_sam(domain, tmp_ctx, &samr_pipe, &dom_pol); + status = cm_connect_sam(domain, tmp_ctx, false, &samr_pipe, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -992,7 +992,7 @@ static NTSTATUS msrpc_lockout_policy(struct winbindd_domain *domain, return NT_STATUS_NOT_SUPPORTED; } - status = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol); + status = cm_connect_sam(domain, mem_ctx, false, &cli, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } @@ -1042,7 +1042,7 @@ static NTSTATUS msrpc_password_policy(struct winbindd_domain *domain, return NT_STATUS_NOT_SUPPORTED; } - status = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol); + status = cm_connect_sam(domain, mem_ctx, false, &cli, &dom_pol); if (!NT_STATUS_IS_OK(status)) { goto done; } |