From 7a86a8b08db03f002a672d1e8a6481ad52114d1e Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Wed, 26 Apr 2000 08:03:50 +0000 Subject: Added code for testing filters. --- filter/config.Y | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'filter/config.Y') diff --git a/filter/config.Y b/filter/config.Y index 2572501..ffb9a74 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -206,10 +206,14 @@ function_body: CF_ADDTO(conf, function_def) function_def: FUNCTION SYM { DBG( "Begining of function %s\n", $2->name ); cf_push_scope($2); } function_params function_body { - extern struct f_inst *startup_func; + extern struct f_inst *startup_func, *test1_func, *test2_func; cf_define_symbol($2, SYM_FUNCTION, $5); if (!strcasecmp($2->name, "__startup")) startup_func = $5; + if (!strcasecmp($2->name, "__test1")) + test1_func = $5; + if (!strcasecmp($2->name, "__test2")) + test2_func = $5; $2->aux = (int) $4; $2->aux2 = $5; DBG("Hmm, we've got one function here - %s\n", $2->name); -- cgit v1.2.3