diff options
author | Volker Lendecke <vl@samba.org> | 2011-07-08 10:06:58 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-07-08 11:22:55 +0200 |
commit | 76c73dbb2271c397ec4e13ebcc3928914c7cf93a (patch) | |
tree | 517f4201d2fed14109259264c51c6bf6bba46076 /source3/modules | |
parent | ef64048038cf6aa706bcbc5d6a17ec86ee6247e9 (diff) | |
download | samba-76c73dbb2271c397ec4e13ebcc3928914c7cf93a.tar.gz samba-76c73dbb2271c397ec4e13ebcc3928914c7cf93a.tar.bz2 samba-76c73dbb2271c397ec4e13ebcc3928914c7cf93a.zip |
s3-zfsacl: Fix a debug message
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Fri Jul 8 11:22:55 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_zfsacl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 286720a354..fbfe7794e7 100644 --- a/source3/modules/vfs_zfsacl.c +++ b/source3/modules/vfs_zfsacl.c @@ -54,7 +54,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", name)); + "reside\n", name)); } else { DEBUG(9, ("acl(ACE_GETACLCNT, %s): %s ", name, strerror(errno))); |