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/client | |
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/client')
-rw-r--r-- | source3/client/clitar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c index 645899a9ff..c29c084cce 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -1405,7 +1405,7 @@ int cmd_setmode(void) direct=0; break; case 'r': - attra[direct]|=aRONLY; + attra[direct]|=FILE_ATTRIBUTE_READONLY; break; case 'h': attra[direct]|=aHIDDEN; |