summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--filter/config.Y5
1 files changed, 3 insertions, 2 deletions
diff --git a/filter/config.Y b/filter/config.Y
index 8fb511e..8ff2046 100644
--- a/filter/config.Y
+++ b/filter/config.Y
@@ -56,8 +56,9 @@ CF_GRAMMAR
CF_ADDTO(conf, filter_def)
filter_def:
- FILTER SYM { cf_push_scope( $2 ); } filter_body {
- $2 = cf_define_symbol($2, SYM_FILTER, $4);
+ FILTER SYM { $2 = cf_define_symbol($2, SYM_FILTER, NULL); cf_push_scope( $2 ); }
+ filter_body {
+ $2->def = $4;
$4->name = $2->name;
DBG( "We have new filter defined (%s)\n", $2->name );
cf_pop_scope();