summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2015-01-25 12:20:35 +0100
committerGünther Deschner <gd@samba.org>2015-03-16 20:26:51 +0100
commita221d88c393dcf8d78307795b37f95b720c78a65 (patch)
treec55c50362a9692c05ce6c0354180f83f8d479b30 /source3
parent1ed41a5c39069d9e95a5e82f1d0f9433bf7999f5 (diff)
downloadsamba-a221d88c393dcf8d78307795b37f95b720c78a65.tar.gz
s3:winbind:grent: fix a debug message.
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/wb_next_grent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/wb_next_grent.c b/source3/winbindd/wb_next_grent.c
index 58e161d9857..02f929ac2f5 100644
--- a/source3/winbindd/wb_next_grent.c
+++ b/source3/winbindd/wb_next_grent.c
@@ -103,14 +103,14 @@ static void wb_next_grent_fetch_done(struct tevent_req *subreq)
TALLOC_FREE(subreq);
if (tevent_req_nterror(req, status)) {
/* Ignore errors here, just log it */
- DEBUG(10, ("query_user_list for domain %s returned %s\n",
+ DEBUG(10, ("QueryGroupList for domain %s returned %s\n",
state->gstate->domain->name,
nt_errstr(status)));
return;
}
if (!NT_STATUS_IS_OK(result)) {
/* Ignore errors here, just log it */
- DEBUG(10, ("query_user_list for domain %s returned %s/%s\n",
+ DEBUG(10, ("QueryGroupList for domain %s returned %s/%s\n",
state->gstate->domain->name,
nt_errstr(status), nt_errstr(result)));
tevent_req_nterror(req, result);