diff options
author | Michael Adam <obnox@samba.org> | 2012-12-07 01:12:11 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-01-29 21:45:46 +0100 |
commit | c0f47d43ecf8b603dc7a05822933c5a9a1d23c7c (patch) | |
tree | 6c6ec3d3813ca0a03b443c1c8da4aeb0d6479919 /source3 | |
parent | bab61a21595070d29fc5822d1ec6747db641d26a (diff) | |
download | samba-c0f47d43ecf8b603dc7a05822933c5a9a1d23c7c.tar.gz samba-c0f47d43ecf8b603dc7a05822933c5a9a1d23c7c.tar.bz2 samba-c0f47d43ecf8b603dc7a05822933c5a9a1d23c7c.zip |
s3:winbindd: rename winbindd_getgrnam_lookupsid_done to winbindd_getgrnam_lookupname_done
That's what it is.
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd_getgrnam.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/winbindd/winbindd_getgrnam.c b/source3/winbindd/winbindd_getgrnam.c index 9460ff44ad..9a2f64e4ad 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); |