From 572e08e893f43e1930c123a244a9b3793959f41f Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 28 Jul 2011 13:28:51 -0400 Subject: 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) --- src/providers/ipa/ipa_dyndns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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); -- cgit