From c0fcd6b98bc1fe5bbd2bd1a4d729215f65e3d20f Mon Sep 17 00:00:00 2001 From: James Brister Date: Tue, 9 May 2000 16:49:50 +0000 Subject: [PATCH] Fixed prototype error in yyparse that only HPUX noticed. --- CHANGES | 2 ++ lib/dns/config/confparser.y | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index c0e716e052..fdf4f9c820 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ + 161. [cleanup] error in yyparse prototype that only HPUX caught. + 160. [cleanup] getnet*() are not going to be implemented at this stage. diff --git a/lib/dns/config/confparser.y b/lib/dns/config/confparser.y index e560bb0914..2209fe59ab 100644 --- a/lib/dns/config/confparser.y +++ b/lib/dns/config/confparser.y @@ -16,7 +16,7 @@ * SOFTWARE. */ -/* $Id: confparser.y,v 1.75 2000/05/08 20:31:13 brister Exp $ */ +/* $Id: confparser.y,v 1.76 2000/05/09 16:49:50 brister Exp $ */ #include @@ -117,8 +117,8 @@ static isc_result_t tmpres; static isc_boolean_t disabled; /* if "disabled" keyword was in zone */ static int debug_lexer; +int yyparse(void); static int yylex(void); -static int yyparse(void); static void parser_error(isc_boolean_t lasttoken, const char *fmt, ...); static void parser_warning(isc_boolean_t lasttoken,