summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <jafar@atcorp.com>2017-07-12 18:42:25 +0200
committerJafar Al-Gharaibeh <jafar@atcorp.com>2017-07-12 18:42:25 +0200
commit7c4e6ea920b4301965db40c93e1096ee21dbaa69 (patch)
treef6183cd1adc7d95d6b7d85ca44e2e43ec92552e8 /lib
parentlib: Change comment to reference watchfrr (diff)
downloadfrr-7c4e6ea920b4301965db40c93e1096ee21dbaa69.tar.xz
frr-7c4e6ea920b4301965db40c93e1096ee21dbaa69.zip
lib: fix error message to reference FRR
Signed-off-by: Jafar Al-Gharaibeh <jafar@atcorp.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/module.c b/lib/module.c
index c7dd5538c..140fd87b9 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;
}