diff options
author | Klement Sekera <ksekera@cisco.com> | 2018-04-17 17:48:30 +0200 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2018-04-17 17:19:11 +0000 |
commit | 2926eca95138577be8d88eb8d6a442d93f182309 (patch) | |
tree | a5537ea8edfd9aa21f286e00c8129cf2948621dc /src/vnet | |
parent | 28fb03fc3931d355d8a63de59b6415b7aaf3c88b (diff) |
VPP-1243: fix reassembly CLI
Change-Id: Ie20aaf0eb1a5a338a54f0de4d6da661431be5163
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/ip/ip46_cli.c | 11 |
1 files 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; |