diff options
author | Jeremy Allison <jra@samba.org> | 2012-09-13 17:08:43 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-09-14 22:54:29 +0200 |
commit | 6d82976597d6418005a889781cc23adf6b3090c3 (patch) | |
tree | bc83ffca8bc4da473e243974fec8c0d9e31e44a5 | |
parent | aa0a7cf51a8b4ed2f188c2c38c4d5d47688de9ad (diff) | |
download | samba-6d82976597d6418005a889781cc23adf6b3090c3.tar.gz samba-6d82976597d6418005a889781cc23adf6b3090c3.tar.bz2 samba-6d82976597d6418005a889781cc23adf6b3090c3.zip |
Fix bad string in debug message (remove it).
-rw-r--r-- | source3/smbd/open.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index ccad07c6e9..b0303f8196 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; |