From: Maria Matejka Date: Fri, 29 Nov 2024 10:27:30 +0000 (+0100) Subject: Conf: build fix for older bisons X-Git-Tag: v3.0.0~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caa5e7907a42d5ea665233b64e4e13fb15f4dfd0;p=thirdparty%2Fbird.git Conf: build fix for older bisons Typed blocks are probably a too new extension to rely on. --- diff --git a/filter/config.Y b/filter/config.Y index 144bbdef6..32cfe51c0 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -515,10 +515,10 @@ type: } } | ENUM - { $$ = cf_maybe_exit_filters(); } + { $$ = cf_maybe_exit_filters(); } enum_type { - if ($2) cf_enter_filters(); + if ($2) cf_enter_filters(); $$ = $3; } ;