From e914ccbe9cfb45bbb0ce61bb496e27df6b6136ba Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Thu, 13 Sep 2018 19:21:05 +0000 Subject: zebra: ZEBRA_[ERR|WARN] -> EC_ZEBRA Signed-off-by: Quentin Young --- zebra/zebra_fpm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zebra/zebra_fpm.c') diff --git a/zebra/zebra_fpm.c b/zebra/zebra_fpm.c index dae37cbd35..13a2b6f51b 100644 --- a/zebra/zebra_fpm.c +++ b/zebra/zebra_fpm.c @@ -1519,7 +1519,7 @@ static inline void zfpm_init_message_format(const char *format) if (!strcmp("netlink", format)) { if (!have_netlink) { flog_err( - ZEBRA_ERR_NETLINK_NOT_AVAILABLE, + EC_ZEBRA_NETLINK_NOT_AVAILABLE, "FPM netlink message format is not available"); return; } @@ -1530,7 +1530,7 @@ static inline void zfpm_init_message_format(const char *format) if (!strcmp("protobuf", format)) { if (!have_protobuf) { flog_err( - ZEBRA_ERR_PROTOBUF_NOT_AVAILABLE, + EC_ZEBRA_PROTOBUF_NOT_AVAILABLE, "FPM protobuf message format is not available"); return; } @@ -1538,7 +1538,7 @@ static inline void zfpm_init_message_format(const char *format) return; } - flog_warn(ZEBRA_ERR_FPM_FORMAT_UNKNOWN, "Unknown fpm format '%s'", + flog_warn(EC_ZEBRA_FPM_FORMAT_UNKNOWN, "Unknown fpm format '%s'", format); } -- cgit v1.2.3