diff options
author | Tim Prouty <tprouty@samba.org> | 2008-11-22 19:37:24 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2008-12-03 17:51:23 -0800 |
commit | 6f7f4b428a86921e9532c62856873a19202f286d (patch) | |
tree | fd23e9d3496fa5d04ece875a6f758759734e79d1 /source3 | |
parent | 08ce0604757315367f26a2c0869d59dd229c3ffe (diff) | |
download | samba-6f7f4b428a86921e9532c62856873a19202f286d.tar.gz samba-6f7f4b428a86921e9532c62856873a19202f286d.tar.xz samba-6f7f4b428a86921e9532c62856873a19202f286d.zip |
s3: Modify direct caller of open_file to call SMB_VFS_CREATE_FILE
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/open.c | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 62d4827bb25..2e34115071d 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2143,10 +2143,25 @@ NTSTATUS open_file_fchmod(struct smb_request *req, connection_struct *conn, return status; } - /* note! we must use a non-zero desired access or we don't get - a real file descriptor. Oh what a twisted web we weave. */ - status = open_file(fsp, conn, NULL, NULL, NULL, fname, psbuf, O_WRONLY, - 0, FILE_WRITE_DATA, FILE_WRITE_DATA); + status = SMB_VFS_CREATE_FILE( + conn, /* conn */ + NULL, /* req */ + 0, /* root_dir_fid */ + fname, /* fname */ + false, /* is_dos_path */ + FILE_WRITE_DATA, /* access_mask */ + (FILE_SHARE_READ | FILE_SHARE_WRITE | /* share_access */ + FILE_SHARE_DELETE), + FILE_OPEN, /* create_disposition*/ + 0, /* create_options */ + 0, /* file_attributes */ + 0, /* oplock_request */ + 0, /* allocation_size */ + NULL, /* sd */ + NULL, /* ea_list */ + &fsp, /* result */ + NULL, /* pinfo */ + psbuf); /* psbuf */ /* * This is not a user visible file open. |