diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-02-13 17:24:23 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-02-13 17:24:23 +1100 |
commit | febc8e361ae9fe2f9412b604da62b49cca913ffc (patch) | |
tree | b0f7bec8a684b26d71fe71738c1e01c8da466b43 | |
parent | 3cb87189f93956075979685d1454e4a514cb71a8 (diff) | |
download | samba-febc8e361ae9fe2f9412b604da62b49cca913ffc.tar.gz samba-febc8e361ae9fe2f9412b604da62b49cca913ffc.tar.bz2 samba-febc8e361ae9fe2f9412b604da62b49cca913ffc.zip |
missed a spot in the SMB2 create conversion
(This used to be commit 17357072dd175b7548122e40e4cecc6087e52561)
-rw-r--r-- | source4/librpc/rpc/dcerpc_smb2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/librpc/rpc/dcerpc_smb2.c b/source4/librpc/rpc/dcerpc_smb2.c index b06964d331..a0094b8bae 100644 --- a/source4/librpc/rpc/dcerpc_smb2.c +++ b/source4/librpc/rpc/dcerpc_smb2.c @@ -410,7 +410,7 @@ struct composite_context *dcerpc_pipe_open_smb2_send(struct dcerpc_pipe *p, state->ctx = ctx; ZERO_STRUCT(io); - io.in.access_mask = + io.in.desired_access = SEC_STD_READ_CONTROL | SEC_FILE_READ_ATTRIBUTE | SEC_FILE_WRITE_ATTRIBUTE | @@ -423,11 +423,11 @@ struct composite_context *dcerpc_pipe_open_smb2_send(struct dcerpc_pipe *p, io.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE; - io.in.open_disposition = NTCREATEX_DISP_OPEN; + io.in.create_disposition = NTCREATEX_DISP_OPEN; io.in.create_options = NTCREATEX_OPTIONS_NON_DIRECTORY_FILE | NTCREATEX_OPTIONS_UNKNOWN_400000; - io.in.impersonation = NTCREATEX_IMPERSONATION_IMPERSONATION; + io.in.impersonation_level = NTCREATEX_IMPERSONATION_IMPERSONATION; if ((strncasecmp(pipe_name, "/pipe/", 6) == 0) || (strncasecmp(pipe_name, "\\pipe\\", 6) == 0)) { |