Fix MPLS table create CLI 57/8457/2
authorNeale Ranns <nranns@cisco.com>
Tue, 19 Sep 2017 13:25:13 +0000 (06:25 -0700)
committerChris Luke <chris_luke@comcast.com>
Tue, 19 Sep 2017 15:23:22 +0000 (15:23 +0000)
Change-Id: I1f3c0f879f636e587aa518c41e5ad99af65129a7
Signed-off-by: Neale Ranns <nranns@cisco.com>
src/vnet/mpls/mpls.c

index f8bbb8a..ed24f75 100644 (file)
@@ -575,11 +575,6 @@ vnet_mpls_table_cmd (vlib_main_t * vm,
       error = clib_error_return (0, "No table id");
       goto done;
     }
-  else if (0 == table_id)
-    {
-      error = clib_error_return (0, "Can't change the default table");
-      goto done;
-    }
   else
     {
       if (is_add)
@@ -604,8 +599,8 @@ vnet_mpls_table_cmd (vlib_main_t * vm,
  * Including the default table.
  ?*/
 /* *INDENT-OFF* */
-VLIB_CLI_COMMAND (ip6_table_command, static) = {
-  .path = "mpla table",
+VLIB_CLI_COMMAND (mpls_table_command, static) = {
+  .path = "mpls table",
   .short_help = "mpls table [add|del] <table-id>",
   .function = vnet_mpls_table_cmd,
   .is_mp_safe = 1,