From caa5e7907a42d5ea665233b64e4e13fb15f4dfd0 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Fri, 29 Nov 2024 11:27:30 +0100 Subject: [PATCH] Conf: build fix for older bisons Typed blocks are probably a too new extension to rely on. --- filter/config.Y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filter/config.Y b/filter/config.Y index 144bbdef..32cfe51c 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; } ;