From 7c4e6ea920b4301965db40c93e1096ee21dbaa69 Mon Sep 17 00:00:00 2001 From: Jafar Al-Gharaibeh Date: Wed, 12 Jul 2017 11:42:25 -0500 Subject: [PATCH] lib: fix error message to reference FRR Signed-off-by: Jafar Al-Gharaibeh --- lib/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/module.c b/lib/module.c index c7dd5538cd..140fd87b99 100644 --- a/lib/module.c +++ b/lib/module.c @@ -110,7 +110,7 @@ struct frrmod_runtime *frrmod_load(const char *spec, dlclose(handle); if (err) snprintf(err, err_len, - "\"%s\" is not a Quagga module: %s", + "\"%s\" is not an FRR module: %s", name, dlerror()); return NULL; }