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 /isisd | |
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 'isisd')
-rw-r--r-- | isisd/isis_errors.c | 4 | ||||
-rw-r--r-- | isisd/isis_errors.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/isisd/isis_errors.c b/isisd/isis_errors.c index 3f69a10ca..ecff65da1 100644 --- a/isisd/isis_errors.c +++ b/isisd/isis_errors.c @@ -24,7 +24,7 @@ #include "isis_errors.h" /* clang-format off */ -static struct ferr_ref ferr_isis_err[] = { +static struct log_ref ferr_isis_err[] = { { .code = ISIS_ERR_PACKET, .title = "ISIS Packet Error", @@ -45,5 +45,5 @@ static struct ferr_ref ferr_isis_err[] = { void isis_error_init(void) { - ferr_ref_add(ferr_isis_err); + log_ref_add(ferr_isis_err); } diff --git a/isisd/isis_errors.h b/isisd/isis_errors.h index ffb000f9c..f738254a3 100644 --- a/isisd/isis_errors.h +++ b/isisd/isis_errors.h @@ -23,7 +23,7 @@ #include "lib/ferr.h" -enum isis_ferr_refs { +enum isis_log_refs { ISIS_ERR_PACKET = ISIS_FERR_START, ISIS_ERR_CONFIG, }; |