From 571ab20d1da227fb66d52ed52cce0cbd4591e1c9 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 22 Aug 2018 04:27:15 -0700 Subject: Consolidate the [un]format_mac_address implementations Change-Id: Ic4c42c5610a827234e6582501f0ddcba47aa34ee Signed-off-by: Neale Ranns --- src/plugins/mactime/mactime.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/plugins/mactime/mactime.h') diff --git a/src/plugins/mactime/mactime.h b/src/plugins/mactime/mactime.h index 2166d4a6735..1a13e41f606 100644 --- a/src/plugins/mactime/mactime.h +++ b/src/plugins/mactime/mactime.h @@ -104,14 +104,6 @@ extern vlib_node_registration_t mactime_tx_node; void mactime_send_create_entry_message (u8 * mac_address); -static inline u8 * -format_mac_address (u8 * s, va_list * args) -{ - u8 *a = va_arg (*args, u8 *); - return format (s, "%02x:%02x:%02x:%02x:%02x:%02x", - a[0], a[1], a[2], a[3], a[4], a[5]); -} - /* Periodic function events */ #define MACTIME_EVENT1 1 #define MACTIME_EVENT2 2 -- cgit 1.2.3-korg