summaryrefslogtreecommitdiff
path: root/source3/smbd/nttrans.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-11-30 00:22:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:27 -0500
commit46f546571bc2429c4ee6ef86866520c4b5d4bcc7 (patch)
tree2bd319bd5210f140a84b975f7d2e8b25d0bb04fa /source3/smbd/nttrans.c
parentb9fcb5b961fc4165899487c7cb368ab2d8d15e8a (diff)
downloadsamba-46f546571bc2429c4ee6ef86866520c4b5d4bcc7.tar.gz
samba-46f546571bc2429c4ee6ef86866520c4b5d4bcc7.tar.bz2
samba-46f546571bc2429c4ee6ef86866520c4b5d4bcc7.zip
r4007: Fix bug #2088 - ensure inherit permissions is only applied on a new file,
not an existing one. Jeremy. (This used to be commit fbbdb72cf1adfe567112556626f26b031747f440)
Diffstat (limited to 'source3/smbd/nttrans.c')
-rw-r--r--source3/smbd/nttrans.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c
index 8e62a0f8bf..42953a1b7a 100644
--- a/source3/smbd/nttrans.c
+++ b/source3/smbd/nttrans.c
@@ -1661,7 +1661,7 @@ static NTSTATUS copy_internals(connection_struct *conn, char *oldname, char *new
/* Grrr. We have to do this as open_file_shared1 adds aARCH when it
creates the file. This isn't the correct thing to do in the copy case. JRA */
- file_set_dosmode(conn, newname, fmode, &sbuf2);
+ file_set_dosmode(conn, newname, fmode, &sbuf2, True);
if (ret < (SMB_OFF_T)sbuf1.st_size) {
return NT_STATUS_DISK_FULL;