diff options
author | Michael Adam <obnox@samba.org> | 2008-11-17 10:29:41 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-11-25 11:29:41 +0100 |
commit | afbfbd7f4c656fa4ed036314837024be8cd634c9 (patch) | |
tree | dfa7e40eae7243b360c85f8675fb53cee1839838 /source3/modules | |
parent | bf04324592695fd6e711ba25a89d47e1b61fa33e (diff) | |
download | samba-afbfbd7f4c656fa4ed036314837024be8cd634c9.tar.gz samba-afbfbd7f4c656fa4ed036314837024be8cd634c9.tar.bz2 samba-afbfbd7f4c656fa4ed036314837024be8cd634c9.zip |
[s3]zfsacl: "return" is not a function.
Michael
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_zfsacl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 650666e921..a5b0490c8d 100644 --- a/source3/modules/vfs_zfsacl.c +++ b/source3/modules/vfs_zfsacl.c @@ -261,20 +261,20 @@ int zfsacl_fail__sys_acl_set_file(vfs_handle_struct *handle, SMB_ACL_TYPE_T type, SMB_ACL_T theacl) { - return(-1); + return -1; } int zfsacl_fail__sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp, int fd, SMB_ACL_T theacl) { - return(-1); + return -1; } int zfsacl_fail__sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path) { - return(-1); + return -1; } /* VFS operations structure */ |