From 0b6849487fee21a321659a274d2fae09ebf8ca54 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Mon, 26 Feb 2001 22:55:55 +0000 Subject: [PATCH] cfg_type_keyref needs to be public --- lib/isccfg/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isccfg/parser.c b/lib/isccfg/parser.c index 731394a0aa..26beb7e8cd 100644 --- a/lib/isccfg/parser.c +++ b/lib/isccfg/parser.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: parser.c,v 1.25 2001/02/26 22:37:32 gson Exp $ */ +/* $Id: parser.c,v 1.26 2001/02/26 22:55:55 gson Exp $ */ #include @@ -1720,7 +1720,7 @@ static cfg_type_t cfg_type_boolean_or_ustring = { static keyword_type_t key_kw = { "key", &cfg_type_astring }; -static cfg_type_t cfg_type_keyref = { +cfg_type_t cfg_type_keyref = { "keyref", parse_keyvalue, print_keyvalue, &cfg_rep_string, &key_kw };