diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-29 11:36:14 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-29 16:38:12 +1000 |
commit | 7f66ebde2e2975b079f6c135b131d064dab38624 (patch) | |
tree | b6a643754f35274f8d0460f7be014c8c524fa12b /source3/locking | |
parent | 9f75b7cbb3d25b3a799f0dc50587260036e40719 (diff) | |
download | samba-7f66ebde2e2975b079f6c135b131d064dab38624.tar.gz samba-7f66ebde2e2975b079f6c135b131d064dab38624.tar.bz2 samba-7f66ebde2e2975b079f6c135b131d064dab38624.zip |
s3-smb Use FILE_ATTRIBUTE_READONLY intead of aRONLY
This means we use just one constant for this file attribute.
Andrew Bartlett
Diffstat (limited to 'source3/locking')
-rw-r--r-- | source3/locking/locking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c index f5892ddf0d..232a8c3702 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -1424,7 +1424,7 @@ NTSTATUS can_set_delete_on_close(files_struct *fsp, uint32 dosmode) * Only allow delete on close for writable files. */ - if ((dosmode & aRONLY) && + if ((dosmode & FILE_ATTRIBUTE_READONLY) && !lp_delete_readonly(SNUM(fsp->conn))) { DEBUG(10,("can_set_delete_on_close: file %s delete on close " "flag set but file attribute is readonly.\n", |