From 4eb53da3fe139b8d89ab98cc1df211267669a612 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 4 Dec 2012 16:26:36 +0100 Subject: [PATCH] s3:smbd: fix a cut and paste error in a debug message Signed-off-by: Michael Adam Reviewed by: Jeremy Allison --- source3/smbd/posix_acls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index c4d24baba55..0f3951f83a0 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -4635,8 +4635,8 @@ NTSTATUS get_nt_acl_no_snum(TALLOC_CTX *ctx, const char *fname, status = SMB_VFS_GET_NT_ACL(conn, fname, security_info_wanted, ctx, sd); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0,("set_nt_acl_no_snum: fset_nt_acl returned %s.\n", - nt_errstr(status))); + DEBUG(0, ("get_nt_acl_no_snum: SMB_VFS_GET_NT_ACL returned %s.\n", + nt_errstr(status))); } conn_free(conn); -- 2.11.4.GIT