diff options
Diffstat (limited to 'nest')
-rw-r--r-- | nest/config.Y | 4 |
1 files changed, 2 insertions, 2 deletions
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); |