aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/nsh/nsh_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/nsh/nsh_test.c')
-rw-r--r--src/plugins/nsh/nsh_test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/nsh/nsh_test.c b/src/plugins/nsh/nsh_test.c
index 0852956dc3e..091ad97dfe9 100644
--- a/src/plugins/nsh/nsh_test.c
+++ b/src/plugins/nsh/nsh_test.c
@@ -402,11 +402,12 @@ clib_error_t * vat_plugin_register (vat_main_t *vam)
/* Ask the vpp engine for the first assigned message-id */
name = format (0, "nsh_%08x%c", api_version, 0);
sm->msg_id_base = vl_client_get_first_plugin_msg_id ((char *) name);
+ vec_free(name);
if (sm->msg_id_base != (u16) ~0)
nsh_vat_api_hookup (vam);
-
- vec_free(name);
+ else
+ return clib_error_return (0, "nsh plugin not loaded...");
return 0;
}