From: Martin Mares Date: Fri, 2 Jun 2000 12:29:24 +0000 (+0000) Subject: Removed rta_find() since nobody uses it and it's more convenient X-Git-Tag: v1.2.0~705 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=566a0eede7094519df07418116beeb7f3f976c7a;p=thirdparty%2Fbird.git Removed rta_find() since nobody uses it and it's more convenient to use ea_find() directly. --- diff --git a/nest/route.h b/nest/route.h index 6d8cc6bec..72b84e544 100644 --- a/nest/route.h +++ b/nest/route.h @@ -348,7 +348,6 @@ 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->eattrs, ea); } void rta_show(struct cli *, rta *, ea_list *); extern struct protocol *attr_class_to_protocol[EAP_MAX];