mirror of
https://github.com/samba-team/samba.git
synced 2025-05-28 21:05:48 +03:00
libsmb: Modernize two DEBUGs
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu May 15 15:06:36 UTC 2025 on atb-devel-224
This commit is contained in:
parent
09b06a452e
commit
16d32aa256
@ -119,9 +119,8 @@ SMBC_remove_unused_server(SMBCCTX * context,
|
||||
for (file = context->internal->files; file; file = file->next) {
|
||||
if (file->srv == srv) {
|
||||
/* Still used */
|
||||
DEBUG(3, ("smbc_remove_usused_server: "
|
||||
"%p still used by %p.\n",
|
||||
srv, file));
|
||||
DBG_NOTICE("%p still used by %p.\n",
|
||||
srv, file);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
@ -131,7 +130,7 @@ SMBC_remove_unused_server(SMBCCTX * context,
|
||||
cli_shutdown(srv->cli);
|
||||
srv->cli = NULL;
|
||||
|
||||
DEBUG(3, ("smbc_remove_usused_server: %p removed.\n", srv));
|
||||
DBG_NOTICE("%p removed.\n", srv);
|
||||
|
||||
smbc_getFunctionRemoveCachedServer(context)(context, srv);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user