summaryrefslogtreecommitdiffstats
path: root/source/modules
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-12-04 08:25:21 +0100
committerMichael Adam <obnox@samba.org>2007-12-19 23:07:59 +0100
commit1c4f74551f48429ee3af2022101a97679e25cdea (patch)
treedf1475a67541644c46e0be995123870490744014 /source/modules
parentf6db5a0d0571130f765d8a0fb4e20e61cc8b2487 (diff)
downloadsamba-1c4f74551f48429ee3af2022101a97679e25cdea.tar.gz
samba-1c4f74551f48429ee3af2022101a97679e25cdea.tar.xz
samba-1c4f74551f48429ee3af2022101a97679e25cdea.zip
Fix two debug statements: Add missing printf parameter.
Michael
Diffstat (limited to 'source/modules')
-rw-r--r--source/modules/vfs_zfsacl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/modules/vfs_zfsacl.c b/source/modules/vfs_zfsacl.c
index 307fa9977f5..83893c7aea3 100644
--- a/source/modules/vfs_zfsacl.c
+++ b/source/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)));