From: Pavel Filipenský Date: Fri, 24 Jun 2022 08:40:11 +0000 (+0200) Subject: s3:winbind: Improve logging in winbindd_endgrent.c X-Git-Tag: tevent-0.13.0~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6cb508ab3d0d316d3adafe6d5fd4f1eef3198793;p=thirdparty%2Fsamba.git s3:winbind: Improve logging in winbindd_endgrent.c Test scenario: id ADDOMAIN/alice Signed-off-by: Pavel Filipenský Reviewed-by: Andreas Schneider --- diff --git a/source3/winbindd/winbindd_endgrent.c b/source3/winbindd/winbindd_endgrent.c index 08dfc552f43..6fdeb8f3da7 100644 --- a/source3/winbindd/winbindd_endgrent.c +++ b/source3/winbindd/winbindd_endgrent.c @@ -37,6 +37,10 @@ struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx, if (req == NULL) { return NULL; } + D_NOTICE("[%s (%u)] Winbind external command ENDGRENT start.\n", + cli->client_name, + (unsigned int)cli->pid); + TALLOC_FREE(cli->grent_state); tevent_req_done(req); return tevent_req_post(req, ev); @@ -45,5 +49,6 @@ struct tevent_req *winbindd_endgrent_send(TALLOC_CTX *mem_ctx, NTSTATUS winbindd_endgrent_recv(struct tevent_req *req, struct winbindd_response *presp) { + D_NOTICE("Winbind external command ENDGRENT end.\n"); return NT_STATUS_OK; }