From 9eceab33f97724be148f9f05614d7551940e85f1 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Thu, 29 May 2014 23:05:03 +0200 Subject: String constants could be used for string option values. Thanks to Frederik Kriewitz for the patch. --- nest/config.Y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nest') diff --git a/nest/config.Y b/nest/config.Y index 85c06e74..eef7422c 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -208,7 +208,7 @@ proto_item: | IMPORT KEEP FILTERED bool { this_proto->in_keep_filtered = $4; } | TABLE rtable { this_proto->table = $2; } | ROUTER ID idval { this_proto->router_id = $3; } - | DESCRIPTION TEXT { this_proto->dsc = $2; } + | DESCRIPTION text { this_proto->dsc = $2; } ; imexport: @@ -388,7 +388,7 @@ password_item: ; password_item_begin: - PASSWORD TEXT { + PASSWORD text { if (!this_p_list) { this_p_list = cfg_alloc(sizeof(list)); init_list(this_p_list); -- cgit v1.2.3