diff options
author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2017-07-12 18:42:25 +0200 |
---|---|---|
committer | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2017-07-12 18:42:25 +0200 |
commit | 7c4e6ea920b4301965db40c93e1096ee21dbaa69 (patch) | |
tree | f6183cd1adc7d95d6b7d85ca44e2e43ec92552e8 /lib | |
parent | lib: Change comment to reference watchfrr (diff) | |
download | frr-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.c | 2 |
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; } |