diff options
-rw-r--r-- | source3/smbd/nttrans.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 997f72161a..6848d10397 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -718,6 +718,7 @@ void reply_ntcreate_and_X(struct smb_request *req) uint32 perms = 0; p += 25; if (fsp->is_directory || + fsp->can_write || can_write_to_file(conn, smb_fname)) { perms = FILE_GENERIC_ALL; } else { @@ -1345,6 +1346,7 @@ static void call_nt_transact_create(connection_struct *conn, uint32 perms = 0; p += 25; if (fsp->is_directory || + fsp->can_write || can_write_to_file(conn, smb_fname)) { perms = FILE_GENERIC_ALL; } else { |