diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-03 20:07:23 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-14 22:02:05 +0200 |
commit | 85cd2f9f9a43d0c536f445cc65b94a8d90bb4c97 (patch) | |
tree | 8ae31ca6e770aeeb3ad5bc2475af0f320d922b2c /zebra/zebra_errors.c | |
parent | *: rename zlog_fer -> flog_err (diff) | |
download | frr-85cd2f9f9a43d0c536f445cc65b94a8d90bb4c97.tar.xz frr-85cd2f9f9a43d0c536f445cc65b94a8d90bb4c97.zip |
*: rename ferr_ref -> log_ref
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_errors.c')
-rw-r--r-- | zebra/zebra_errors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_errors.c b/zebra/zebra_errors.c index 39e3939bb..198e1cce2 100644 --- a/zebra/zebra_errors.c +++ b/zebra/zebra_errors.c @@ -24,7 +24,7 @@ #include "zebra_errors.h" /* clang-format off */ -static struct ferr_ref ferr_zebra_err[] = { +static struct log_ref ferr_zebra_err[] = { { .code = ZEBRA_ERR_LM_RESPONSE, .title = "Error reading response from label manager", @@ -274,5 +274,5 @@ static struct ferr_ref ferr_zebra_err[] = { void zebra_error_init(void) { - ferr_ref_add(ferr_zebra_err); + log_ref_add(ferr_zebra_err); } |