summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_default.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-09-30 10:11:31 +0200
committerVolker Lendecke <vlendec@samba.org>2011-09-30 15:06:47 +0200
commitfe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29 (patch)
tree35c95055e7e8e82fc0ce6a7d688db24b6915eb51 /source3/modules/vfs_default.c
parentf5081df369468b8b3324ed2a502e684f7068ace2 (diff)
downloadsamba-fe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29.tar.gz
samba-fe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29.tar.bz2
samba-fe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29.zip
s3: Re-add (), fix a gcc hint
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Fri Sep 30 15:06:47 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/modules/vfs_default.c')
-rw-r--r--source3/modules/vfs_default.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index 745b36c97c..55b6bc7bfc 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -1640,7 +1640,7 @@ static bool vfswrap_is_offline(struct vfs_handle_struct *handle,
return false;
}
- offline = dmapi_file_flags(path) & FILE_ATTRIBUTE_OFFLINE != 0;
+ offline = (dmapi_file_flags(path) & FILE_ATTRIBUTE_OFFLINE) != 0;
TALLOC_FREE(path);