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

s4/ldap_backend: do_call: use modern DBG macros

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>

Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Fri Dec 29 13:50:05 UTC 2023 on atb-devel-224
This commit is contained in:
Björn Jacke 2023-12-25 21:48:35 +01:00 committed by Stefan Metzmacher
parent 80c2513da4
commit bab0ac776c

View File

@ -1530,8 +1530,8 @@ NTSTATUS ldapsrv_do_call(struct ldapsrv_call *call)
for (i=0; msg->controls && msg->controls[i]; i++) {
if (!msg->controls_decoded[i] &&
msg->controls[i]->critical) {
DEBUG(3, ("ldapsrv_do_call: Critical extension %s is not known to this server\n",
msg->controls[i]->oid));
DBG_NOTICE("Critical extension %s is not known to this server\n",
msg->controls[i]->oid);
return ldapsrv_unwilling(call, LDAP_UNAVAILABLE_CRITICAL_EXTENSION);
}
}