VPP-1243: fix reassembly CLI 51/11851/3
authorKlement Sekera <ksekera@cisco.com>
Tue, 17 Apr 2018 15:48:30 +0000 (17:48 +0200)
committerChris Luke <chris_luke@comcast.com>
Tue, 17 Apr 2018 17:19:11 +0000 (17:19 +0000)
Change-Id: Ie20aaf0eb1a5a338a54f0de4d6da661431be5163
Signed-off-by: Klement Sekera <ksekera@cisco.com>
src/vnet/ip/ip46_cli.c

index 2508f0e..e0e26a2 100644 (file)
@@ -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;