1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s3:winbind: Improve logging in winbindd_getgrnam.c

Test scenario:
bin/wbinfo --group-info 'ADDOMAIN/domain users'

Signed-off-by: Pavel Filipenský <pfilipen@redhat.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Pavel Filipenský 2021-08-04 18:41:21 +02:00 committed by Andreas Schneider
parent 9c41992d9d
commit 2ec7ccabb3

View File

@ -56,7 +56,8 @@ struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx,
/* Ensure null termination */
request->data.groupname[sizeof(request->data.groupname)-1]='\0';
DBG_NOTICE("[%s (%u)] getgrnam %s\n",
D_NOTICE("[%s (%u)] Winbind external command GETGRNAM start.\n"
"Searching group name '%s'.\n",
cli->client_name,
(unsigned int)cli->pid,
request->data.groupname);
@ -171,15 +172,15 @@ NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
if (tevent_req_is_nterror(req, &status)) {
struct dom_sid_buf sidbuf;
DEBUG(5, ("Could not convert sid %s: %s\n",
D_WARNING("Could not convert sid %s: %s\n",
dom_sid_str_buf(&state->sid, &sidbuf),
nt_errstr(status)));
nt_errstr(status));
return status;
}
if (!fill_grent(talloc_tos(), &response->data.gr, state->domname,
state->name, state->gid)) {
DEBUG(5, ("fill_grent failed\n"));
D_WARNING("fill_grent failed\n");
return NT_STATUS_NO_MEMORY;
}
@ -197,5 +198,9 @@ NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req,
response->extra_data.data = buf;
response->length += talloc_get_size(response->extra_data.data);
D_NOTICE("Winbind external command GETGRNAM end.\n"
"Returning %u memmber(s).\n",
response->data.gr.num_gr_mem);
return NT_STATUS_OK;
}