From: Jeremy Allison Date: Fri, 14 Sep 2012 00:08:43 +0000 (-0700) Subject: Fix bad string in debug message (remove it). X-Git-Tag: ldb-1.1.13~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d82976597d6418005a889781cc23adf6b3090c3;p=thirdparty%2Fsamba.git Fix bad string in debug message (remove it). --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index ccad07c6e9b..b0303f81969 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -1686,8 +1686,7 @@ static NTSTATUS smbd_calculate_maximum_allowed_access( return NT_STATUS_OK; } if (!NT_STATUS_IS_OK(status)) { - DEBUG(10,("smbd_calculate_access_mask: " - "Could not get acl on file %s: %s\n", + DEBUG(10,("Could not get acl on file %s: %s\n", smb_fname_str_dbg(smb_fname), nt_errstr(status))); return NT_STATUS_ACCESS_DENIED; @@ -1706,8 +1705,7 @@ static NTSTATUS smbd_calculate_maximum_allowed_access( TALLOC_FREE(sd); if (!NT_STATUS_IS_OK(status)) { - DEBUG(10, ("smbd_calculate_access_mask: " - "Access denied on file %s: " + DEBUG(10, ("Access denied on file %s: " "when calculating maximum access\n", smb_fname_str_dbg(smb_fname))); return NT_STATUS_ACCESS_DENIED;