1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

samr_server: Modernize a DBG statement

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2023-12-18 22:03:07 +01:00 committed by Jeremy Allison
parent 73a2793967
commit ebb8084c67

View File

@ -7046,11 +7046,12 @@ NTSTATUS _samr_RemoveMemberFromForeignDomain(struct pipes_struct *p,
if (!sid_check_is_builtin(&dinfo->sid)) {
struct dom_sid_buf buf2;
DEBUG(1,("_samr_RemoveMemberFromForeignDomain: domain_sid = %s, "
"global_sam_sid() = %s\n",
dom_sid_str_buf(&dinfo->sid, &buf),
dom_sid_str_buf(get_global_sam_sid(), &buf2)));
DEBUGADD(1,("please report to samba-technical@lists.samba.org!\n"));
DBG_WARNING("domain_sid = %s, "
"global_sam_sid() = %s\n"
"please report to "
"samba-technical@lists.samba.org!\n",
dom_sid_str_buf(&dinfo->sid, &buf),
dom_sid_str_buf(get_global_sam_sid(), &buf2));
return NT_STATUS_OK;
}