1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

smbd: Modernize two DBG statements

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2023-08-31 11:37:00 +02:00 committed by Jeremy Allison
parent e8570f73ac
commit 94dcbed38d

View File

@ -3819,12 +3819,11 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn,
*pinfo = FILE_WAS_CREATED;
}
DEBUG(10, ("open_file_ntcreate: printer open fname=%s\n",
smb_fname_str_dbg(smb_fname)));
DBG_DEBUG("printer open fname=%s\n",
smb_fname_str_dbg(smb_fname));
if (!req) {
DEBUG(0,("open_file_ntcreate: printer open without "
"an SMB request!\n"));
DBG_ERR("printer open without an SMB request!\n");
return NT_STATUS_INTERNAL_ERROR;
}