summaryrefslogtreecommitdiff
path: root/source3/winbindd/wb_queryuser.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_queryuser.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_queryuser.c')
-rw-r--r--source3/winbindd/wb_queryuser.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/winbindd/wb_queryuser.c b/source3/winbindd/wb_queryuser.c
index 7a2f1de17b..d85af78f3e 100644
--- a/source3/winbindd/wb_queryuser.c
+++ b/source3/winbindd/wb_queryuser.c
@@ -35,7 +35,6 @@ struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
struct tevent_req *req, *subreq;
struct wb_queryuser_state *state;
struct winbindd_domain *domain;
- NTSTATUS status;
req = tevent_req_create(mem_ctx, &state, struct wb_queryuser_state);
if (req == NULL) {
@@ -54,12 +53,6 @@ struct tevent_req *wb_queryuser_send(TALLOC_CTX *mem_ctx,
return tevent_req_post(req, ev);
}
- status = wcache_query_user(domain, state, &state->sid, state->info);
- if (NT_STATUS_IS_OK(status)) {
- tevent_req_done(req);
- return tevent_req_post(req, ev);
- }
-
subreq = rpccli_wbint_QueryUser_send(state, ev, domain->child.rpccli,
&state->sid, state->info);
if (tevent_req_nomem(subreq, req)) {