summaryrefslogtreecommitdiff
path: root/source3/smbd/open.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2008-11-19 17:55:28 -0800
committerTim Prouty <tprouty@samba.org>2008-12-03 17:50:37 -0800
commitf995a7af2a06ccff29f23f1b099e0a84bc948f6e (patch)
tree4d1b1b193f16ea3c6c5567127084cfe9d74be17b /source3/smbd/open.c
parentf38d7f20a865b1ff5f7b039dd284d91b2ba7ec26 (diff)
downloadsamba-f995a7af2a06ccff29f23f1b099e0a84bc948f6e.tar.gz
samba-f995a7af2a06ccff29f23f1b099e0a84bc948f6e.tar.bz2
samba-f995a7af2a06ccff29f23f1b099e0a84bc948f6e.zip
s3: Add new "is_dos_path" argument to SMB_VFS_CREATE_FILE
Now unix paths can be differentiated from windows paths so the underlying create_file implementations can convert paths correctly.
Diffstat (limited to 'source3/smbd/open.c')
-rw-r--r--source3/smbd/open.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index 924b6c5905..d8f5548883 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -3086,6 +3086,7 @@ NTSTATUS create_file_default(connection_struct *conn,
struct smb_request *req,
uint16_t root_dir_fid,
const char *fname,
+ bool is_dos_path,
uint32_t access_mask,
uint32_t share_access,
uint32_t create_disposition,
@@ -3111,7 +3112,7 @@ NTSTATUS create_file_default(connection_struct *conn,
"create_disposition = 0x%x create_options = 0x%x "
"oplock_request = 0x%x "
"root_dir_fid = 0x%x, ea_list = 0x%p, sd = 0x%p, "
- "fname = %s\n",
+ "is_dos_path = %s, fname = %s\n",
(unsigned int)access_mask,
(unsigned int)file_attributes,
(unsigned int)share_access,
@@ -3119,7 +3120,7 @@ NTSTATUS create_file_default(connection_struct *conn,
(unsigned int)create_options,
(unsigned int)oplock_request,
(unsigned int)root_dir_fid,
- ea_list, sd, fname));
+ ea_list, sd, fname, is_dos_path ? "true" : "false"));
/*
* Get the file name.
@@ -3275,7 +3276,7 @@ NTSTATUS create_file_default(connection_struct *conn,
file_attributes &= ~FILE_FLAG_POSIX_SEMANTICS;
}
- {
+ if (is_dos_path) {
char *converted_fname;
SET_STAT_INVALID(sbuf);