From 4e8e1df14390b20c18397fc5643e11cc35942921 Mon Sep 17 00:00:00 2001 From: Philippe Guibert Date: Fri, 3 Feb 2017 09:10:08 +0100 Subject: [PATCH] bgpd: reflect mac handling change of apis to bgpd As the prefix call function for mac handling has prefix_ prepended before, the change must be propagated to all locations where those functions are called. Signed-off-by: Philippe Guibert --- bgpd/rfapi/rfapi_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/rfapi/rfapi_vty.c b/bgpd/rfapi/rfapi_vty.c index f08ab98be3..9c245f63d0 100644 --- a/bgpd/rfapi/rfapi_vty.c +++ b/bgpd/rfapi/rfapi_vty.c @@ -313,7 +313,7 @@ rfapiL2o2Qprefix (struct rfapi_l2address_option *l2o, struct prefix *pfx) char * rfapiEthAddr2Str (const struct ethaddr *ea, char *buf, int bufsize) { - return mac2str (ea->octet, buf, bufsize); + return prefix_mac2str (ea->octet, buf, bufsize); } int -- 2.39.5