From fe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 30 Sep 2011 10:11:31 +0200 Subject: s3: Re-add (), fix a gcc hint Autobuild-User: Volker Lendecke Autobuild-Date: Fri Sep 30 15:06:47 CEST 2011 on sn-devel-104 --- source3/modules/vfs_default.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit