summaryrefslogtreecommitdiff
path: root/source3/winbindd/wb_lookupsid.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-27 14:16:22 +0200
committerVolker Lendecke <vl@samba.org>2009-08-27 15:04:09 +0200
commitc4a95f900a64649527a0a299eb52c352c51a2ae7 (patch)
treef7957a00d961325c7e2526ba4a3a68469747ab0c /source3/winbindd/wb_lookupsid.c
parent94948f7a401df781ad64090a804a894cf2976a86 (diff)
downloadsamba-c4a95f900a64649527a0a299eb52c352c51a2ae7.tar.gz
samba-c4a95f900a64649527a0a299eb52c352c51a2ae7.tar.bz2
samba-c4a95f900a64649527a0a299eb52c352c51a2ae7.zip
s3:winbind: Remove the manual caching for the async wb_ functions
The generic NDR-based cache in winbindd_dual_ndr.c replaces this.
Diffstat (limited to 'source3/winbindd/wb_lookupsid.c')
-rw-r--r--source3/winbindd/wb_lookupsid.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/source3/winbindd/wb_lookupsid.c b/source3/winbindd/wb_lookupsid.c
index f258828048..80e0b80ca1 100644
--- a/source3/winbindd/wb_lookupsid.c
+++ b/source3/winbindd/wb_lookupsid.c
@@ -38,8 +38,6 @@ struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
{
struct tevent_req *req, *subreq;
struct wb_lookupsid_state *state;
- char *dom_name, *name;
- NTSTATUS status;
req = tevent_req_create(mem_ctx, &state, struct wb_lookupsid_state);
if (req == NULL) {
@@ -56,15 +54,6 @@ struct tevent_req *wb_lookupsid_send(TALLOC_CTX *mem_ctx,
return tevent_req_post(req, ev);
}
- status = wcache_sid_to_name(state->lookup_domain, sid, state,
- &dom_name, &name, &state->type);
- if (NT_STATUS_IS_OK(status)) {
- state->domname = dom_name;
- state->name = name;
- tevent_req_done(req);
- return tevent_req_post(req, ev);
- }
-
subreq = rpccli_wbint_LookupSid_send(
state, ev, state->lookup_domain->child.rpccli,
&state->sid, &state->type, &state->domname, &state->name);