s3:winbindd: rename winbindd_getgrnam_lookupsid_done to winbindd_getgrnam_lookupname_done
authorMichael Adam <obnox@samba.org>
Fri, 7 Dec 2012 00:12:11 +0000 (01:12 +0100)
committerStefan Metzmacher <metze@samba.org>
Tue, 29 Jan 2013 20:45:46 +0000 (21:45 +0100)
That's what it is.

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
source3/winbindd/winbindd_getgrnam.c

index 9460ff44ad1917efbc981c598a3dc0d288d30a76..9a2f64e4ad0ee91dc1fd69ba24881c91f8e24aa4 100644 (file)
@@ -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);