summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-03-04 23:30:44 +0100
committerMartin Mares <mj@ucw.cz>2000-03-04 23:30:44 +0100
commit9f4929e749d945c727f245ed7ef30c557124c352 (patch)
treec95402b0e521b61a9f45ac39c6f24228330e9ffd /filter
parentb9626ec6eaf299b889f52d017d025f356b43371a (diff)
downloadbird-9f4929e749d945c727f245ed7ef30c557124c352.tar
bird-9f4929e749d945c727f245ed7ef30c557124c352.zip
Renamed EAF_INLINE to EAF_TEMP to make the name reflect the real meaning.
Diffstat (limited to 'filter')
-rw-r--r--filter/config.Y2
-rw-r--r--filter/filter.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/filter/config.Y b/filter/config.Y
index e99d5b7..0859ead 100644
--- a/filter/config.Y
+++ b/filter/config.Y
@@ -419,7 +419,7 @@ cmd:
}
| UNSET '(' rtadot dynamic_attr ')' ';' {
$$ = $4;
- $$->aux = EAF_TYPE_UNDEF | EAF_INLINE;
+ $$->aux = EAF_TYPE_UNDEF | EAF_TEMP;
$$->code = P('e','S');
$$->a1.p = NULL;
}
diff --git a/filter/filter.c b/filter/filter.c
index 7e52664..f0e9cd8 100644
--- a/filter/filter.c
+++ b/filter/filter.c
@@ -361,7 +361,7 @@ interpret(struct f_inst *what)
break;
}
- if (what->aux & EAF_INLINE) {
+ if (!(what->aux & EAF_TEMP)) {
*f_rte = rte_do_cow(*f_rte);
l->next = (*f_rte)->attrs->eattrs;
(*f_rte)->attrs->eattrs = l;