From 88c50b7d4b6061d4029426c07aedd62a1dd0e3f4 Mon Sep 17 00:00:00 2001 From: Klement Sekera Date: Tue, 17 Apr 2018 17:48:30 +0200 Subject: VPP-1243: fix reassembly CLI Change-Id: Ie20aaf0eb1a5a338a54f0de4d6da661431be5163 Signed-off-by: Klement Sekera --- src/vnet/ip/ip46_cli.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/vnet/ip/ip46_cli.c b/src/vnet/ip/ip46_cli.c index 2508f0e8ee6..e0e26a2ce5d 100644 --- a/src/vnet/ip/ip46_cli.c +++ b/src/vnet/ip/ip46_cli.c @@ -236,27 +236,28 @@ set_reassembly_command_fn (vlib_main_t * vm, return NULL; } - if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)) + if (!unformat_user + (line_input, unformat_vnet_sw_interface, vnm, &sw_if_index)) { return clib_error_return (0, "Invalid interface name"); } - if (unformat (input, "on")) + if (unformat (line_input, "on")) { ip4_on = 1; ip6_on = 1; } - else if (unformat (input, "off")) + else if (unformat (line_input, "off")) { ip4_on = 0; ip6_on = 0; } - else if (unformat (input, "ip4")) + else if (unformat (line_input, "ip4")) { ip4_on = 1; ip6_on = 0; } - else if (unformat (input, "ip6")) + else if (unformat (line_input, "ip6")) { ip4_on = 0; ip6_on = 1; -- cgit 1.2.3-korg