From: Mark Andrews Date: Tue, 23 Oct 2001 02:44:54 +0000 (+0000) Subject: pullup: X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5aadceae67ae40184b0cb122febe09f3b4dbcdb7;p=thirdparty%2Fbind9.git pullup: some variables that should have been static weren't --- diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 03947f87878..50a4c0d49da 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: zone.c,v 1.283.2.17 2001/07/24 02:57:34 marka Exp $ */ +/* $Id: zone.c,v 1.283.2.18 2001/10/23 02:44:54 marka Exp $ */ #include @@ -430,8 +430,8 @@ static void zone_notify(dns_zone_t *zone); #define DNS_ENTER zone_log(zone, me, ISC_LOG_DEBUG(1), "enter") #define DNS_LEAVE zone_log(zone, me, ISC_LOG_DEBUG(1), "leave") -const unsigned int dbargc_default = 1; -const char *dbargv_default[] = { "rbt" }; +static const unsigned int dbargc_default = 1; +static const char *dbargv_default[] = { "rbt" }; /*** *** Public functions.