diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-04 23:30:44 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-04 23:30:44 +0100 |
commit | 9f4929e749d945c727f245ed7ef30c557124c352 (patch) | |
tree | c95402b0e521b61a9f45ac39c6f24228330e9ffd /nest/rt-attr.c | |
parent | b9626ec6eaf299b889f52d017d025f356b43371a (diff) | |
download | bird-9f4929e749d945c727f245ed7ef30c557124c352.tar bird-9f4929e749d945c727f245ed7ef30c557124c352.zip |
Renamed EAF_INLINE to EAF_TEMP to make the name reflect the real meaning.
Diffstat (limited to 'nest/rt-attr.c')
-rw-r--r-- | nest/rt-attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c index 43bf5fe..75cdf39 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -253,8 +253,8 @@ ea_dump(ea_list *e) { eattr *a = &e->attrs[i]; debug(" %02x:%02x.%02x", EA_PROTO(a->id), EA_ID(a->id), a->flags); - if (a->type & EAF_INLINE) - debug("*"); + if (a->type & EAF_TEMP) + debug("T"); debug("=%c", "?iO?I?P???S?????" [a->type & EAF_TYPE_MASK]); if (a->type & EAF_EMBEDDED) debug(":%08x", a->u.data); |