From: Michael Adam Date: Fri, 7 Dec 2012 00:12:11 +0000 (+0100) Subject: s3:winbindd: rename winbindd_getgrnam_lookupsid_done to winbindd_getgrnam_lookupname_done X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=c0f47d43ecf8b603dc7a05822933c5a9a1d23c7c s3:winbindd: rename winbindd_getgrnam_lookupsid_done to winbindd_getgrnam_lookupname_done That's what it is. Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher --- diff --git a/source3/winbindd/winbindd_getgrnam.c b/source3/winbindd/winbindd_getgrnam.c index 9460ff44ad19..9a2f64e4ad0e 100644 --- a/source3/winbindd/winbindd_getgrnam.c +++ b/source3/winbindd/winbindd_getgrnam.c @@ -30,7 +30,7 @@ struct winbindd_getgrnam_state { struct talloc_dict *members; }; -static void winbindd_getgrnam_lookupsid_done(struct tevent_req *subreq); +static void winbindd_getgrnam_lookupname_done(struct tevent_req *subreq); static void winbindd_getgrnam_done(struct tevent_req *subreq); struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx, @@ -81,12 +81,12 @@ struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx, if (tevent_req_nomem(subreq, req)) { return tevent_req_post(req, ev); } - tevent_req_set_callback(subreq, winbindd_getgrnam_lookupsid_done, + tevent_req_set_callback(subreq, winbindd_getgrnam_lookupname_done, req); return req; } -static void winbindd_getgrnam_lookupsid_done(struct tevent_req *subreq) +static void winbindd_getgrnam_lookupname_done(struct tevent_req *subreq) { struct tevent_req *req = tevent_req_callback_data( subreq, struct tevent_req);