From: Florin Coras Date: Fri, 1 Dec 2017 12:54:06 +0000 (-0800) Subject: gpe: fix gpe enable/disable command X-Git-Tag: v18.04-rc0~128 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=9fa1581cc40b656b6e00d77479fc2424cd50a126;p=vpp.git gpe: fix gpe enable/disable command Return error if not input provided. Change-Id: I4a68fafaf4efd74395e513baa7f18fa55b83de87 Signed-off-by: Florin Coras --- 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) {