summaryrefslogtreecommitdiffstats
path: root/filter/f-util.c
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>2000-04-17 16:12:02 +0200
committerPavel Machek <pavel@ucw.cz>2000-04-17 16:12:02 +0200
commit0150e5211adabcbde55a76506f0f1a5901214b52 (patch)
treec80ed39d0f9fb40871645824b617a2fcdfc1dd4c /filter/f-util.c
parent74a7da482b1a537aaa97b4b5d6f6815887150f26 (diff)
downloadbird-0150e5211adabcbde55a76506f0f1a5901214b52.tar
bird-0150e5211adabcbde55a76506f0f1a5901214b52.zip
Cleaned up mess with types in e,a and e,S. Dynamic attributes should
now work.
Diffstat (limited to 'filter/f-util.c')
-rw-r--r--filter/f-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/f-util.c b/filter/f-util.c
index 2ffcd9f..cf174e7 100644
--- a/filter/f-util.c
+++ b/filter/f-util.c
@@ -24,7 +24,7 @@ struct f_inst *
f_new_dynamic_attr(int type, int f_type, int code)
{
struct f_inst *f = f_new_inst();
- f->aux = f_type;
+ f->aux = type;
f->a2.i = code;
return f;
}