summaryrefslogtreecommitdiff
path: root/lib/lib_errors.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-06-18 09:13:37 -0400
committerQuentin Young <qlyoung@cumulusnetworks.com>2018-08-14 20:02:05 +0000
commit472878dc0fdd5e17500e8a6ba8a65d13e36d9467 (patch)
treee92ddabd91c15d6b465e577d09216c3207ed907e /lib/lib_errors.c
parent674c3ca8a837bf732a6a6062bea23a3ec745d971 (diff)
lib: Add LIB_ERR_DEVELOPMENT
Sometimes a error state is detected when we have added new code to FRR, but not updated all the places that we should have. Consider this a developmental escape that needs to be fixed. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/lib_errors.c')
-rw-r--r--lib/lib_errors.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/lib_errors.c b/lib/lib_errors.c
index 71ff53053e..ae4635673f 100644
--- a/lib/lib_errors.c
+++ b/lib/lib_errors.c
@@ -89,6 +89,12 @@ static struct ferr_ref ferr_lib_err[] = {
.suggestion = "Open an Issue with all relevant log files and restart FRR"
},
{
+ .code = LIB_ERR_DEVELOPMENT,
+ .title = "Developmental Escape Error",
+ .description = "FRR has detected an issue where new development has not properly\nupdated all code paths.",
+ .suggestion = "Open an Issue with all relevant log files"
+ },
+ {
.code = END_FERR,
}
};