mirror of
https://github.com/samba-team/samba.git
synced 2025-03-07 00:58:40 +03:00
Re-run make idl.
Guenther (This used to be commit 0ee299f040f73fdbae4c1c89ab6de4904f1f0fac)
This commit is contained in:
parent
ab38d3dd44
commit
ed43977f08
@ -303,7 +303,7 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy(struct rpc_pipe_client *cli,
|
||||
TALLOC_CTX *mem_ctx,
|
||||
struct policy_handle *handle,
|
||||
enum lsa_PolicyInfo level,
|
||||
union lsa_PolicyInformation *info)
|
||||
union lsa_PolicyInformation **info)
|
||||
{
|
||||
struct lsa_QueryInfoPolicy r;
|
||||
NTSTATUS status;
|
||||
@ -336,9 +336,7 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy(struct rpc_pipe_client *cli,
|
||||
}
|
||||
|
||||
/* Return variables */
|
||||
if (info && r.out.info) {
|
||||
*info = *r.out.info;
|
||||
}
|
||||
*info = *r.out.info;
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
@ -2002,7 +2000,7 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy2(struct rpc_pipe_client *cli,
|
||||
TALLOC_CTX *mem_ctx,
|
||||
struct policy_handle *handle,
|
||||
enum lsa_PolicyInfo level,
|
||||
union lsa_PolicyInformation *info)
|
||||
union lsa_PolicyInformation **info)
|
||||
{
|
||||
struct lsa_QueryInfoPolicy2 r;
|
||||
NTSTATUS status;
|
||||
@ -2035,9 +2033,7 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy2(struct rpc_pipe_client *cli,
|
||||
}
|
||||
|
||||
/* Return variables */
|
||||
if (info && r.out.info) {
|
||||
*info = *r.out.info;
|
||||
}
|
||||
*info = *r.out.info;
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
|
@ -35,7 +35,7 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy(struct rpc_pipe_client *cli,
|
||||
TALLOC_CTX *mem_ctx,
|
||||
struct policy_handle *handle,
|
||||
enum lsa_PolicyInfo level,
|
||||
union lsa_PolicyInformation *info);
|
||||
union lsa_PolicyInformation **info);
|
||||
NTSTATUS rpccli_lsa_SetInfoPolicy(struct rpc_pipe_client *cli,
|
||||
TALLOC_CTX *mem_ctx,
|
||||
struct policy_handle *handle,
|
||||
@ -220,7 +220,7 @@ NTSTATUS rpccli_lsa_QueryInfoPolicy2(struct rpc_pipe_client *cli,
|
||||
TALLOC_CTX *mem_ctx,
|
||||
struct policy_handle *handle,
|
||||
enum lsa_PolicyInfo level,
|
||||
union lsa_PolicyInformation *info);
|
||||
union lsa_PolicyInformation **info);
|
||||
NTSTATUS rpccli_lsa_SetInfoPolicy2(struct rpc_pipe_client *cli,
|
||||
TALLOC_CTX *mem_ctx,
|
||||
struct policy_handle *handle,
|
||||
|
@ -676,7 +676,7 @@ struct lsa_QueryInfoPolicy {
|
||||
} in;
|
||||
|
||||
struct {
|
||||
union lsa_PolicyInformation *info;/* [unique,switch_is(level)] */
|
||||
union lsa_PolicyInformation **info;/* [ref,switch_is(level)] */
|
||||
NTSTATUS result;
|
||||
} out;
|
||||
|
||||
@ -1199,7 +1199,7 @@ struct lsa_QueryInfoPolicy2 {
|
||||
} in;
|
||||
|
||||
struct {
|
||||
union lsa_PolicyInformation *info;/* [unique,switch_is(level)] */
|
||||
union lsa_PolicyInformation **info;/* [ref,switch_is(level)] */
|
||||
NTSTATUS result;
|
||||
} out;
|
||||
|
||||
|
@ -5090,10 +5090,13 @@ static enum ndr_err_code ndr_push_lsa_QueryInfoPolicy(struct ndr_push *ndr, int
|
||||
NDR_CHECK(ndr_push_lsa_PolicyInfo(ndr, NDR_SCALARS, r->in.level));
|
||||
}
|
||||
if (flags & NDR_OUT) {
|
||||
NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
|
||||
if (r->out.info) {
|
||||
NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_push_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
|
||||
if (r->out.info == NULL) {
|
||||
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
||||
}
|
||||
NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
|
||||
if (*r->out.info) {
|
||||
NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_push_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
|
||||
}
|
||||
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
||||
}
|
||||
@ -5105,6 +5108,7 @@ static enum ndr_err_code ndr_pull_lsa_QueryInfoPolicy(struct ndr_pull *ndr, int
|
||||
uint32_t _ptr_info;
|
||||
TALLOC_CTX *_mem_save_handle_0;
|
||||
TALLOC_CTX *_mem_save_info_0;
|
||||
TALLOC_CTX *_mem_save_info_1;
|
||||
if (flags & NDR_IN) {
|
||||
ZERO_STRUCT(r->out);
|
||||
|
||||
@ -5116,21 +5120,29 @@ static enum ndr_err_code ndr_pull_lsa_QueryInfoPolicy(struct ndr_pull *ndr, int
|
||||
NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS|NDR_BUFFERS, r->in.handle));
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_handle_0, LIBNDR_FLAG_REF_ALLOC);
|
||||
NDR_CHECK(ndr_pull_lsa_PolicyInfo(ndr, NDR_SCALARS, &r->in.level));
|
||||
NDR_PULL_ALLOC(ndr, r->out.info);
|
||||
ZERO_STRUCTP(r->out.info);
|
||||
}
|
||||
if (flags & NDR_OUT) {
|
||||
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
||||
NDR_PULL_ALLOC(ndr, r->out.info);
|
||||
}
|
||||
_mem_save_info_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
||||
NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
|
||||
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_info));
|
||||
if (_ptr_info) {
|
||||
NDR_PULL_ALLOC(ndr, r->out.info);
|
||||
NDR_PULL_ALLOC(ndr, *r->out.info);
|
||||
} else {
|
||||
r->out.info = NULL;
|
||||
*r->out.info = NULL;
|
||||
}
|
||||
if (r->out.info) {
|
||||
_mem_save_info_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
||||
NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
|
||||
NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_pull_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_info_0, 0);
|
||||
if (*r->out.info) {
|
||||
_mem_save_info_1 = NDR_PULL_GET_MEM_CTX(ndr);
|
||||
NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
|
||||
NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_pull_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_info_1, 0);
|
||||
}
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_info_0, LIBNDR_FLAG_REF_ALLOC);
|
||||
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
||||
}
|
||||
return NDR_ERR_SUCCESS;
|
||||
@ -5158,11 +5170,14 @@ _PUBLIC_ void ndr_print_lsa_QueryInfoPolicy(struct ndr_print *ndr, const char *n
|
||||
ndr->depth++;
|
||||
ndr_print_ptr(ndr, "info", r->out.info);
|
||||
ndr->depth++;
|
||||
if (r->out.info) {
|
||||
ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
|
||||
ndr_print_lsa_PolicyInformation(ndr, "info", r->out.info);
|
||||
ndr_print_ptr(ndr, "info", *r->out.info);
|
||||
ndr->depth++;
|
||||
if (*r->out.info) {
|
||||
ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
|
||||
ndr_print_lsa_PolicyInformation(ndr, "info", *r->out.info);
|
||||
}
|
||||
ndr->depth--;
|
||||
ndr->depth--;
|
||||
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
||||
ndr->depth--;
|
||||
}
|
||||
@ -8722,10 +8737,13 @@ static enum ndr_err_code ndr_push_lsa_QueryInfoPolicy2(struct ndr_push *ndr, int
|
||||
NDR_CHECK(ndr_push_lsa_PolicyInfo(ndr, NDR_SCALARS, r->in.level));
|
||||
}
|
||||
if (flags & NDR_OUT) {
|
||||
NDR_CHECK(ndr_push_unique_ptr(ndr, r->out.info));
|
||||
if (r->out.info) {
|
||||
NDR_CHECK(ndr_push_set_switch_value(ndr, r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_push_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
|
||||
if (r->out.info == NULL) {
|
||||
return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
|
||||
}
|
||||
NDR_CHECK(ndr_push_unique_ptr(ndr, *r->out.info));
|
||||
if (*r->out.info) {
|
||||
NDR_CHECK(ndr_push_set_switch_value(ndr, *r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_push_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
|
||||
}
|
||||
NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
|
||||
}
|
||||
@ -8737,6 +8755,7 @@ static enum ndr_err_code ndr_pull_lsa_QueryInfoPolicy2(struct ndr_pull *ndr, int
|
||||
uint32_t _ptr_info;
|
||||
TALLOC_CTX *_mem_save_handle_0;
|
||||
TALLOC_CTX *_mem_save_info_0;
|
||||
TALLOC_CTX *_mem_save_info_1;
|
||||
if (flags & NDR_IN) {
|
||||
ZERO_STRUCT(r->out);
|
||||
|
||||
@ -8748,21 +8767,29 @@ static enum ndr_err_code ndr_pull_lsa_QueryInfoPolicy2(struct ndr_pull *ndr, int
|
||||
NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS|NDR_BUFFERS, r->in.handle));
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_handle_0, LIBNDR_FLAG_REF_ALLOC);
|
||||
NDR_CHECK(ndr_pull_lsa_PolicyInfo(ndr, NDR_SCALARS, &r->in.level));
|
||||
NDR_PULL_ALLOC(ndr, r->out.info);
|
||||
ZERO_STRUCTP(r->out.info);
|
||||
}
|
||||
if (flags & NDR_OUT) {
|
||||
if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
|
||||
NDR_PULL_ALLOC(ndr, r->out.info);
|
||||
}
|
||||
_mem_save_info_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
||||
NDR_PULL_SET_MEM_CTX(ndr, r->out.info, LIBNDR_FLAG_REF_ALLOC);
|
||||
NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_info));
|
||||
if (_ptr_info) {
|
||||
NDR_PULL_ALLOC(ndr, r->out.info);
|
||||
NDR_PULL_ALLOC(ndr, *r->out.info);
|
||||
} else {
|
||||
r->out.info = NULL;
|
||||
*r->out.info = NULL;
|
||||
}
|
||||
if (r->out.info) {
|
||||
_mem_save_info_0 = NDR_PULL_GET_MEM_CTX(ndr);
|
||||
NDR_PULL_SET_MEM_CTX(ndr, r->out.info, 0);
|
||||
NDR_CHECK(ndr_pull_set_switch_value(ndr, r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_pull_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, r->out.info));
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_info_0, 0);
|
||||
if (*r->out.info) {
|
||||
_mem_save_info_1 = NDR_PULL_GET_MEM_CTX(ndr);
|
||||
NDR_PULL_SET_MEM_CTX(ndr, *r->out.info, 0);
|
||||
NDR_CHECK(ndr_pull_set_switch_value(ndr, *r->out.info, r->in.level));
|
||||
NDR_CHECK(ndr_pull_lsa_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, *r->out.info));
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_info_1, 0);
|
||||
}
|
||||
NDR_PULL_SET_MEM_CTX(ndr, _mem_save_info_0, LIBNDR_FLAG_REF_ALLOC);
|
||||
NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
|
||||
}
|
||||
return NDR_ERR_SUCCESS;
|
||||
@ -8790,11 +8817,14 @@ _PUBLIC_ void ndr_print_lsa_QueryInfoPolicy2(struct ndr_print *ndr, const char *
|
||||
ndr->depth++;
|
||||
ndr_print_ptr(ndr, "info", r->out.info);
|
||||
ndr->depth++;
|
||||
if (r->out.info) {
|
||||
ndr_print_set_switch_value(ndr, r->out.info, r->in.level);
|
||||
ndr_print_lsa_PolicyInformation(ndr, "info", r->out.info);
|
||||
ndr_print_ptr(ndr, "info", *r->out.info);
|
||||
ndr->depth++;
|
||||
if (*r->out.info) {
|
||||
ndr_print_set_switch_value(ndr, *r->out.info, r->in.level);
|
||||
ndr_print_lsa_PolicyInformation(ndr, "info", *r->out.info);
|
||||
}
|
||||
ndr->depth--;
|
||||
ndr->depth--;
|
||||
ndr_print_NTSTATUS(ndr, "result", r->out.result);
|
||||
ndr->depth--;
|
||||
}
|
||||
|
@ -580,7 +580,7 @@ static bool api_lsa_QueryInfoPolicy(pipes_struct *p)
|
||||
}
|
||||
|
||||
ZERO_STRUCT(r->out);
|
||||
r->out.info = talloc_zero(r, union lsa_PolicyInformation);
|
||||
r->out.info = talloc_zero(r, union lsa_PolicyInformation *);
|
||||
if (r->out.info == NULL) {
|
||||
talloc_free(r);
|
||||
return false;
|
||||
@ -3584,7 +3584,7 @@ static bool api_lsa_QueryInfoPolicy2(pipes_struct *p)
|
||||
}
|
||||
|
||||
ZERO_STRUCT(r->out);
|
||||
r->out.info = talloc_zero(r, union lsa_PolicyInformation);
|
||||
r->out.info = talloc_zero(r, union lsa_PolicyInformation *);
|
||||
if (r->out.info == NULL) {
|
||||
talloc_free(r);
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user