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/lib | |
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/lib')
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 0bb46db05f..b71be79f06 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -309,7 +309,7 @@ char *attrib_string(uint16 mode) if (mode & aARCH) fstrcat(attrstr,"A"); if (mode & aHIDDEN) fstrcat(attrstr,"H"); if (mode & aSYSTEM) fstrcat(attrstr,"S"); - if (mode & aRONLY) fstrcat(attrstr,"R"); + if (mode & FILE_ATTRIBUTE_READONLY) fstrcat(attrstr,"R"); return talloc_strdup(talloc_tos(), attrstr); } |