From 62ab789de5f5ace97a93fce551469f0229ba8c92 Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Wed, 1 Mar 2000 14:42:59 +0000 Subject: Added type parameter to f_new_dynamic_attr. --- filter/f-util.c | 4 ++-- filter/filter.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'filter') diff --git a/filter/f-util.c b/filter/f-util.c index 6a42b9d..1f3c79a 100644 --- a/filter/f-util.c +++ b/filter/f-util.c @@ -33,10 +33,10 @@ f_new_inst(void) } struct f_inst * -f_new_dynamic_attr(int code) +f_new_dynamic_attr(int type, int code) { struct f_inst *f = f_new_inst(); - f->aux = EAF_TYPE_INT | EAF_INLINE; + f->aux = type; f->a2.i = code; return f; } diff --git a/filter/filter.h b/filter/filter.h index bbf3040..3f05f6a 100644 --- a/filter/filter.h +++ b/filter/filter.h @@ -57,7 +57,7 @@ struct filter { void filters_postconfig(void); struct f_inst *f_new_inst(void); -struct f_inst *f_new_dynamic_attr(int code); +struct f_inst *f_new_dynamic_attr(int type, int code); struct f_tree *f_new_tree(void); struct f_tree *build_tree(struct f_tree *); -- cgit v1.2.3