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/libsmb | |
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/libsmb')
-rw-r--r-- | source3/libsmb/libsmb_dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/libsmb_dir.c b/source3/libsmb/libsmb_dir.c index c0c6e83bb6..125bd4e2ef 100644 --- a/source3/libsmb/libsmb_dir.c +++ b/source3/libsmb/libsmb_dir.c @@ -1611,7 +1611,7 @@ SMBC_chmod_ctx(SMBCCTX *context, mode = 0; - if (!(newmode & (S_IWUSR | S_IWGRP | S_IWOTH))) mode |= aRONLY; + if (!(newmode & (S_IWUSR | S_IWGRP | S_IWOTH))) mode |= FILE_ATTRIBUTE_READONLY; if ((newmode & S_IXUSR) && lp_map_archive(-1)) mode |= aARCH; if ((newmode & S_IXGRP) && lp_map_system(-1)) mode |= aSYSTEM; if ((newmode & S_IXOTH) && lp_map_hidden(-1)) mode |= aHIDDEN; |