s3-build: re-run make samba3-idl.
authorGünther Deschner <gd@samba.org>
Fri, 17 Oct 2008 20:53:11 +0000 (22:53 +0200)
committerGünther Deschner <gd@samba.org>
Fri, 17 Oct 2008 21:02:11 +0000 (23:02 +0200)
Guenther

source3/librpc/gen_ndr/cli_winreg.c
source3/librpc/gen_ndr/cli_winreg.h
source3/librpc/gen_ndr/ndr_winreg.c
source3/librpc/gen_ndr/winreg.h

index 9ad1a47a2530fdfd14e1a61a6e9ccb44c0fedd80..d558a5a185d71184e2d71e8520b7104012b51db8 100644 (file)
@@ -1070,7 +1070,7 @@ NTSTATUS rpccli_winreg_SaveKey(struct rpc_pipe_client *cli,
 NTSTATUS rpccli_winreg_SetKeySecurity(struct rpc_pipe_client *cli,
                                      TALLOC_CTX *mem_ctx,
                                      struct policy_handle *handle /* [in] [ref] */,
-                                     uint32_t access_mask /* [in]  */,
+                                     uint32_t sec_info /* [in]  */,
                                      struct KeySecurityData *sd /* [in] [ref] */,
                                      WERROR *werror)
 {
@@ -1079,7 +1079,7 @@ NTSTATUS rpccli_winreg_SetKeySecurity(struct rpc_pipe_client *cli,
 
        /* In parameters */
        r.in.handle = handle;
-       r.in.access_mask = access_mask;
+       r.in.sec_info = sec_info;
        r.in.sd = sd;
 
        if (DEBUGLEVEL >= 10) {
index 8ce043c74684a4fb13f4ade4e1cc4f56c6f521ee..ce2bfcd5ec11a053141f2b93f1a6a4b2b81723c6 100644 (file)
@@ -148,7 +148,7 @@ NTSTATUS rpccli_winreg_SaveKey(struct rpc_pipe_client *cli,
 NTSTATUS rpccli_winreg_SetKeySecurity(struct rpc_pipe_client *cli,
                                      TALLOC_CTX *mem_ctx,
                                      struct policy_handle *handle /* [in] [ref] */,
-                                     uint32_t access_mask /* [in]  */,
+                                     uint32_t sec_info /* [in]  */,
                                      struct KeySecurityData *sd /* [in] [ref] */,
                                      WERROR *werror);
 NTSTATUS rpccli_winreg_SetValue(struct rpc_pipe_client *cli,
index 818ce65936040c7b771db744a7edf09e1bfe1620..41c9acd7b93bd3d41420a3f7508dc528f369ad3a 100644 (file)
@@ -3003,7 +3003,7 @@ static enum ndr_err_code ndr_push_winreg_SetKeySecurity(struct ndr_push *ndr, in
                        return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
                }
                NDR_CHECK(ndr_push_policy_handle(ndr, NDR_SCALARS, r->in.handle));
-               NDR_CHECK(ndr_push_winreg_AccessMask(ndr, NDR_SCALARS, r->in.access_mask));
+               NDR_CHECK(ndr_push_security_secinfo(ndr, NDR_SCALARS, r->in.sec_info));
                if (r->in.sd == NULL) {
                        return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
                }
@@ -3027,7 +3027,7 @@ static enum ndr_err_code ndr_pull_winreg_SetKeySecurity(struct ndr_pull *ndr, in
                NDR_PULL_SET_MEM_CTX(ndr, r->in.handle, LIBNDR_FLAG_REF_ALLOC);
                NDR_CHECK(ndr_pull_policy_handle(ndr, NDR_SCALARS, r->in.handle));
                NDR_PULL_SET_MEM_CTX(ndr, _mem_save_handle_0, LIBNDR_FLAG_REF_ALLOC);
-               NDR_CHECK(ndr_pull_winreg_AccessMask(ndr, NDR_SCALARS, &r->in.access_mask));
+               NDR_CHECK(ndr_pull_security_secinfo(ndr, NDR_SCALARS, &r->in.sec_info));
                if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
                        NDR_PULL_ALLOC(ndr, r->in.sd);
                }
@@ -3056,7 +3056,7 @@ _PUBLIC_ void ndr_print_winreg_SetKeySecurity(struct ndr_print *ndr, const char
                ndr->depth++;
                ndr_print_policy_handle(ndr, "handle", r->in.handle);
                ndr->depth--;
-               ndr_print_winreg_AccessMask(ndr, "access_mask", r->in.access_mask);
+               ndr_print_security_secinfo(ndr, "sec_info", r->in.sec_info);
                ndr_print_ptr(ndr, "sd", r->in.sd);
                ndr->depth++;
                ndr_print_KeySecurityData(ndr, "sd", r->in.sd);
index ddcb363d3d4b2c9135c76721e386a553dbcd4217..0f3c45ebb799f8a8ff01b42938965eec9a59f343 100644 (file)
@@ -443,7 +443,7 @@ struct winreg_SaveKey {
 struct winreg_SetKeySecurity {
        struct {
                struct policy_handle *handle;/* [ref] */
-               uint32_t access_mask;
+               uint32_t sec_info;
                struct KeySecurityData *sd;/* [ref] */
        } in;