]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Attribute type hack.
authorMartin Mares <mj@ucw.cz>
Wed, 12 Apr 2000 13:55:30 +0000 (13:55 +0000)
committerMartin Mares <mj@ucw.cz>
Wed, 12 Apr 2000 13:55:30 +0000 (13:55 +0000)
filter/f-util.c

index 82dc1c3dfa150408314a3f57e5969fb4c1f4d6b1..048dd29f972c5525cfe72531bc32da813ccd3799 100644 (file)
@@ -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;
 }