From: Joseph Sutton Date: Mon, 7 Aug 2023 04:45:42 +0000 (+1200) Subject: s3:modules: Fix error message X-Git-Tag: tevent-0.16.0~1143 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e9882f8207d2d74870bbc8beff77d7cdafe46b7a;p=thirdparty%2Fsamba.git s3:modules: Fix error message Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 27ea7b55c6a..61b9191700f 100644 --- a/source3/modules/vfs_zfsacl.c +++ b/source3/modules/vfs_zfsacl.c @@ -245,7 +245,7 @@ static bool zfs_process_smbacl(vfs_handle_struct *handle, files_struct *fsp, if(errno == ENOSYS) { DEBUG(9, ("acl(ACE_SETACL, %s): Operation is not " "supported on the filesystem where the file " - "reside\n", fsp_str_dbg(fsp))); + "resides\n", fsp_str_dbg(fsp))); } else { DEBUG(9, ("acl(ACE_SETACL, %s): %s\n", fsp_str_dbg(fsp), strerror(errno)));