From: Tatuya JINMEI 神明達哉 Date: Thu, 3 Sep 2009 21:55:13 +0000 (+0000) Subject: cleanup: fixed incorrect ifdef [RT #20210] X-Git-Tag: v9.7.0a3~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af55bddf26801cc3807b0eec46824ecbd016b663;p=thirdparty%2Fbind9.git cleanup: fixed incorrect ifdef [RT #20210] --- diff --git a/lib/isc/timer.c b/lib/isc/timer.c index ef6996d8a86..f9c4bf86538 100644 --- a/lib/isc/timer.c +++ b/lib/isc/timer.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: timer.c,v 1.93 2009/09/02 04:25:19 jinmei Exp $ */ +/* $Id: timer.c,v 1.94 2009/09/03 21:55:13 jinmei Exp $ */ /*! \file */ @@ -172,13 +172,15 @@ static struct isc__timermethods { static struct isc__timermgrmethods { isc_timermgrmethods_t methods; +#ifndef BIND9 void *poke; /* see above */ +#endif } timermgrmethods = { { isc__timermgr_destroy, isc__timer_create } -#ifdef BIND9 +#ifndef BIND9 , (void *)isc__timermgr_poke #endif