diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:21:05 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:23:29 +0000 |
| commit | e914ccbe9cfb45bbb0ce61bb496e27df6b6136ba (patch) | |
| tree | 0cb5b71e277a706f708cdaff0c8aaa2deefa319f /zebra/zebra_fpm.c | |
| parent | f74ae2bb41bb235d256bf67064fa374362e61857 (diff) | |
zebra: ZEBRA_[ERR|WARN] -> EC_ZEBRA
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_fpm.c')
| -rw-r--r-- | zebra/zebra_fpm.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |
