diff options
author | Michael Adam <obnox@samba.org> | 2007-12-04 08:25:21 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-19 23:07:59 +0100 |
commit | 65b3065a4b31102e332de7d6008941847d5f97b3 (patch) | |
tree | 72ee19ef05a105fefa5044d94fd89dccc36b1356 /source3/modules | |
parent | 35f13ae58958e00aeb81bfe6cb5cf3c9dec3f62f (diff) | |
download | samba-65b3065a4b31102e332de7d6008941847d5f97b3.tar.gz samba-65b3065a4b31102e332de7d6008941847d5f97b3.tar.bz2 samba-65b3065a4b31102e332de7d6008941847d5f97b3.zip |
Fix two debug statements: Add missing printf parameter.
Michael
(This used to be commit 1c4f74551f48429ee3af2022101a97679e25cdea)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_zfsacl.c | 4 |
1 files changed, 2 insertions, 2 deletions
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))); |