diff options
author | Volker Lendecke <vl@samba.org> | 2011-09-30 10:11:31 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-09-30 15:06:47 +0200 |
commit | fe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29 (patch) | |
tree | 35c95055e7e8e82fc0ce6a7d688db24b6915eb51 | |
parent | f5081df369468b8b3324ed2a502e684f7068ace2 (diff) | |
download | samba-fe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29.tar.gz samba-fe1bcdb4b9cddf1f8e85f1bc89e540f6cca90a29.tar.xz 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
-rw-r--r-- | source3/modules/vfs_default.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 745b36c97c5..55b6bc7bfcc 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); |