1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

s3:rpc_server: Fix incomplete logging messages

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-08-07 16:50:04 +12:00 committed by Andrew Bartlett
parent c172de6ee4
commit f7e86f5045
2 changed files with 4 additions and 2 deletions

View File

@ -324,7 +324,8 @@ static struct printer_handle *find_printer_index_by_hnd(struct pipes_struct *p,
struct printer_handle,
&status);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(2,("find_printer_index_by_hnd: Printer handle not found: \n"));
DEBUG(2,("find_printer_index_by_hnd: Printer handle not found: %s\n",
nt_errstr(status)));
return NULL;
}

View File

@ -55,7 +55,8 @@ static struct registry_key *find_regkey_by_hnd(struct pipes_struct *p,
struct registry_key,
&status);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(2,("find_regkey_index_by_hnd: Registry Key not found: \n"));
DEBUG(2,("find_regkey_index_by_hnd: Registry Key not found: %s\n",
nt_errstr(status)));
return NULL;
}