summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2011-07-28 13:28:51 -0400
committerStephen Gallagher <sgallagh@redhat.com>2011-08-01 07:27:41 -0400
commit572e08e893f43e1930c123a244a9b3793959f41f (patch)
tree747682796727f955fa9f0212a6b4b6b4c194e278 /src/providers/ipa
parent8ccd1f65b9b1f056e97484e07dc8d0df796a3bf8 (diff)
downloadsssd-572e08e893f43e1930c123a244a9b3793959f41f.tar.gz
sssd-572e08e893f43e1930c123a244a9b3793959f41f.tar.xz
sssd-572e08e893f43e1930c123a244a9b3793959f41f.zip
Remove incorrect private variable
This caused no ill effects, since it wasn't used in the callback. However, it is a layering violation (especially since req is freed in the callback)
Diffstat (limited to 'src/providers/ipa')
-rw-r--r--src/providers/ipa/ipa_dyndns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_dyndns.c b/src/providers/ipa/ipa_dyndns.c
index 72e4ba4db..d82236785 100644
--- a/src/providers/ipa/ipa_dyndns.c
+++ b/src/providers/ipa/ipa_dyndns.c
@@ -70,7 +70,7 @@ void ipa_dyndns_update(void *pvt)
DEBUG(1, ("Could not update DNS\n"));
return;
}
- tevent_req_set_callback(req, ipa_dyndns_update_done, req);
+ tevent_req_set_callback(req, ipa_dyndns_update_done, NULL);
}
static void ipa_dyndns_sdap_connect_done(struct tevent_req *subreq);