From afbfbd7f4c656fa4ed036314837024be8cd634c9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 17 Nov 2008 10:29:41 +0100 Subject: [s3]zfsacl: "return" is not a function. Michael --- source3/modules/vfs_zfsacl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') 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 */ -- cgit