From 65b3065a4b31102e332de7d6008941847d5f97b3 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 4 Dec 2007 08:25:21 +0100 Subject: Fix two debug statements: Add missing printf parameter. Michael (This used to be commit 1c4f74551f48429ee3af2022101a97679e25cdea) --- source3/modules/vfs_zfsacl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/modules') diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 307fa9977f..83893c7aea 100644 --- a/source3/modules/vfs_zfsacl.c +++ b/source3/modules/vfs_zfsacl.c @@ -48,7 +48,7 @@ static NTSTATUS zfs_get_nt_acl_common(const char *name, if(errno == ENOSYS) { DEBUG(9, ("acl(ACE_GETACLCNT, %s): Operation is not " "supported on the filesystem where the file " - "reside")); + "reside", name)); } else { DEBUG(9, ("acl(ACE_GETACLCNT, %s): %s ", name, strerror(errno))); @@ -149,7 +149,7 @@ static bool zfs_process_smbacl(files_struct *fsp, SMB4ACL_T *smbacl) if(errno == ENOSYS) { DEBUG(9, ("acl(ACE_SETACL, %s): Operation is not " "supported on the filesystem where the file " - "reside")); + "reside", fsp->fsp_name)); } else { DEBUG(9, ("acl(ACE_SETACL, %s): %s ", fsp->fsp_name, strerror(errno))); -- cgit