summaryrefslogtreecommitdiffstats
path: root/nest/rt-attr.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-11-04 14:29:43 +0100
committerMartin Mares <mj@ucw.cz>1999-11-04 14:29:43 +0100
commit2727bb7c5bbdac54661a5097f86d979799095db8 (patch)
treea981480d9cb1489ec5e8e792b77d1062806921c2 /nest/rt-attr.c
parent6dc7a0cb39d712c7670a113d5a66e9e868eb9872 (diff)
downloadbird-2727bb7c5bbdac54661a5097f86d979799095db8.tar
bird-2727bb7c5bbdac54661a5097f86d979799095db8.zip
Renamed attr->attrs to attr->eattrs.
Diffstat (limited to 'nest/rt-attr.c')
-rw-r--r--nest/rt-attr.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c
index 2a369ce..ca6cb10 100644
--- a/nest/rt-attr.c
+++ b/nest/rt-attr.c
@@ -275,7 +275,7 @@ rta_same(rta *x, rta *y)
ipa_equal(x->gw, y->gw) &&
ipa_equal(x->from, y->from) &&
x->iface == y->iface &&
- ea_same(x->attrs, y->attrs));
+ ea_same(x->eattrs, y->eattrs));
}
static rta *
@@ -285,7 +285,7 @@ rta_copy(rta *o)
memcpy(r, o, sizeof(rta));
r->uc = 1;
- r->attrs = ea_list_copy(o->attrs);
+ r->eattrs = ea_list_copy(o->eattrs);
return r;
}
@@ -295,15 +295,15 @@ rta_lookup(rta *o)
rta *r;
ASSERT(!(o->aflags & RTAF_CACHED));
- if (o->attrs)
+ if (o->eattrs)
{
- if (o->attrs->next) /* Multiple ea_list's, need to merge them */
+ if (o->eattrs->next) /* Multiple ea_list's, need to merge them */
{
- ea_list *ml = alloca(ea_scan(o->attrs));
- ea_merge(o->attrs, ml);
- o->attrs = ml;
+ ea_list *ml = alloca(ea_scan(o->eattrs));
+ ea_merge(o->eattrs, ml);
+ o->eattrs = ml;
}
- ea_sort(o->attrs);
+ ea_sort(o->eattrs);
}
for(r=first_rta; r; r=r->next)
@@ -347,10 +347,10 @@ rta_dump(rta *a)
debug(" ->%I", a->gw);
if (a->dest == RTD_DEVICE || a->dest == RTD_ROUTER)
debug(" [%s]", a->iface ? a->iface->name : "???" );
- if (a->attrs)
+ if (a->eattrs)
{
debug(" EA: ");
- ea_dump(a->attrs);
+ ea_dump(a->eattrs);
}
}