From 30020941e48b62abc95c38cde0e50df67a79d842 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 29 Oct 1999 06:07:17 +0000 Subject: [PATCH] ISC_TRUE not 1 --- lib/isc/commandline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isc/commandline.c b/lib/isc/commandline.c index 803387f660..94be6bb26d 100644 --- a/lib/isc/commandline.c +++ b/lib/isc/commandline.c @@ -48,7 +48,7 @@ * SUCH DAMAGE. */ -/* $Id: commandline.c,v 1.1 1999/10/06 19:23:05 tale Exp $ */ +/* $Id: commandline.c,v 1.2 1999/10/29 06:07:17 marka Exp $ */ /* * This file was adapted from the NetBSD project's source tree, RCS ID: @@ -76,7 +76,7 @@ int isc_commandline_option; /* Character checked for validity. */ char *isc_commandline_argument; /* Argument associated with option. */ char *isc_commandline_progname; /* For printing error messages. */ -isc_boolean_t isc_commandline_errprint = 1; /* Print error messages. */ +isc_boolean_t isc_commandline_errprint = ISC_TRUE; /* Print error messages. */ isc_boolean_t isc_commandline_reset = ISC_TRUE; /* Reset processing. */ #define BADOPT '?'