2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

some variables that should have been static weren't

This commit is contained in:
Andreas Gustafsson
2001-10-23 01:49:35 +00:00
parent 3476dfe9d7
commit 1ae369c9d2
3 changed files with 7 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: zone.c,v 1.349 2001/10/18 06:12:04 marka Exp $ */
/* $Id: zone.c,v 1.350 2001/10/23 01:49:33 gson Exp $ */
#include <config.h>
@@ -432,8 +432,8 @@ static void dump_done(void *arg, isc_result_t result);
#define ENTER zone_debuglog(zone, me, 1, "enter")
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.