]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
cfg_type_keyref needs to be public
authorAndreas Gustafsson <source@isc.org>
Mon, 26 Feb 2001 22:55:55 +0000 (22:55 +0000)
committerAndreas Gustafsson <source@isc.org>
Mon, 26 Feb 2001 22:55:55 +0000 (22:55 +0000)
lib/isccfg/parser.c

index 731394a0aa1b1c85a692a22bfe02e641f9ecc28e..26beb7e8cd6ebabda6bd24af37e8256f88811b05 100644 (file)
@@ -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 <config.h>
 
@@ -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
 };