diff options
author | Martin Mares <mj@ucw.cz> | 1999-11-04 13:29:43 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-11-04 13:29:43 +0000 |
commit | 2727bb7c5bbdac54661a5097f86d979799095db8 (patch) | |
tree | a981480d9cb1489ec5e8e792b77d1062806921c2 /nest/route.h | |
parent | 6dc7a0cb39d712c7670a113d5a66e9e868eb9872 (diff) |
Renamed attr->attrs to attr->eattrs.
Diffstat (limited to 'nest/route.h')
-rw-r--r-- | nest/route.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/route.h b/nest/route.h index c11d771b..0451e254 100644 --- a/nest/route.h +++ b/nest/route.h @@ -208,7 +208,7 @@ typedef struct rta { ip_addr gw; /* Next hop */ ip_addr from; /* Advertising router */ struct iface *iface; /* Outgoing interface */ - struct ea_list *attrs; /* Extended Attribute chain */ + struct ea_list *eattrs; /* Extended Attribute chain */ } rta; #define RTS_DUMMY 0 /* Dummy route to be removed soon */ @@ -305,7 +305,7 @@ void rta__free(rta *r); static inline void rta_free(rta *r) { if (r && !--r->uc) rta__free(r); } void rta_dump(rta *); void rta_dump_all(void); -static inline eattr * rta_find(rta *a, unsigned ea) { return ea_find(a->attrs, ea); } +static inline eattr * rta_find(rta *a, unsigned ea) { return ea_find(a->eattrs, ea); } /* * Default protocol preferences |