]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
cleanup: fixed incorrect ifdef [RT #20210]
authorTatuya JINMEI 神明達哉 <jinmei@isc.org>
Thu, 3 Sep 2009 21:55:13 +0000 (21:55 +0000)
committerTatuya JINMEI 神明達哉 <jinmei@isc.org>
Thu, 3 Sep 2009 21:55:13 +0000 (21:55 +0000)
lib/isc/timer.c

index ef6996d8a863a994d0ba450bc2f2059f40f6f41b..f9c4bf86538361d419ea4357be6f7777ca39e69d 100644 (file)
@@ -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