summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-06-09 10:42:34 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-06-10 10:17:22 -0400
commitec79ebede424ad301cf128f5c774f8557b0c7f0d (patch)
treed76ba76ee35c847f638da1a4e820ef4f9b67ba8b
parent92dc62741c10110671fca89baff3156bed5623c4 (diff)
downloadsssd-ec79ebede424ad301cf128f5c774f8557b0c7f0d.tar.gz
sssd-ec79ebede424ad301cf128f5c774f8557b0c7f0d.tar.xz
sssd-ec79ebede424ad301cf128f5c774f8557b0c7f0d.zip
Eliminate unused variable from pc_init_timeout()
https://fedorahosted.org/sssd/ticket/525
-rw-r--r--src/providers/proxy/proxy.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/providers/proxy/proxy.c b/src/providers/proxy/proxy.c
index 443e603ee..8bdc94aa6 100644
--- a/src/providers/proxy/proxy.c
+++ b/src/providers/proxy/proxy.c
@@ -468,13 +468,9 @@ static void pc_init_timeout(struct tevent_context *ev,
struct timeval t, void *ptr)
{
struct tevent_req *req;
- struct pc_init_ctx *state;
DEBUG(2, ("Client timed out before Identification!\n"));
-
req = talloc_get_type(ptr, struct tevent_req);
- state = tevent_req_data(req, struct pc_init_ctx);
-
tevent_req_error(req, ETIMEDOUT);
}