From: Volker Lendecke Date: Wed, 27 May 2020 13:31:07 +0000 (+0200) Subject: vfs: Fix typos X-Git-Tag: ldb-2.2.0~151 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0221337a6b7254d8016195fc39a63dd81eefc2d2;p=thirdparty%2Fsamba.git vfs: Fix typos Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 32ec8c5d5d0..9142a07aadd 100644 --- a/source3/modules/vfs_zfsacl.c +++ b/source3/modules/vfs_zfsacl.c @@ -386,12 +386,12 @@ static NTSTATUS zfsacl_fset_nt_acl(vfs_handle_struct *handle, But while "traditional" POSIX DRAFT ACLs (using acl(2) with SETACL / GETACL / GETACLCNT) fail for ZFS, the Solaris NFS client - implemets a compatibility wrapper, which will make calls to + implements a compatibility wrapper, which will make calls to traditional ACL calls though vfs_solarisacl succeed. As the compatibility wrapper's implementation is (by design) incomplete, we want to make sure that it is never being called. - As long as Samba does not support an exiplicit method for a module + As long as Samba does not support an explicit method for a module to define conflicting vfs methods, we should override all conflicting methods here.