From 9fa1581cc40b656b6e00d77479fc2424cd50a126 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Fri, 1 Dec 2017 04:54:06 -0800 Subject: gpe: fix gpe enable/disable command Return error if not input provided. Change-Id: I4a68fafaf4efd74395e513baa7f18fa55b83de87 Signed-off-by: Florin Coras --- src/vnet/lisp-gpe/lisp_gpe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet/lisp-gpe') diff --git a/src/vnet/lisp-gpe/lisp_gpe.c b/src/vnet/lisp-gpe/lisp_gpe.c index 8ee2a72d381..c7b3d887cfa 100644 --- a/src/vnet/lisp-gpe/lisp_gpe.c +++ b/src/vnet/lisp-gpe/lisp_gpe.c @@ -321,7 +321,7 @@ lisp_gpe_enable_disable_command_fn (vlib_main_t * vm, /* Get a line of input. */ if (!unformat_user (input, unformat_line_input, line_input)) - return 0; + return clib_error_return (0, "expected enable | disable"); while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { -- cgit 1.2.3-korg