summaryrefslogtreecommitdiffstats
path: root/filter/f-util.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-04-12 15:55:30 +0200
committerMartin Mares <mj@ucw.cz>2000-04-12 15:55:30 +0200
commit66d573d4903801c45011de36b6b593f1cde9ea73 (patch)
tree6bba302b29a499684f79e1e684c9e3d115b49f95 /filter/f-util.c
parent10a53608860724c47596948f2fd426d4eca8224d (diff)
downloadbird-66d573d4903801c45011de36b6b593f1cde9ea73.tar
bird-66d573d4903801c45011de36b6b593f1cde9ea73.zip
Attribute type hack.
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 82dc1c3..048dd29 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 code)
{
struct f_inst *f = f_new_inst();
- f->aux = type;
+ f->aux = T_PATH; /* type; HACK!!! */
f->a2.i = code;
return f;
}