NAT64: Fix error message typo (VPP-961) 99/8199/2
authorMatus Fabian <matfabia@cisco.com>
Thu, 24 Aug 2017 09:38:51 +0000 (02:38 -0700)
committerFlorin Coras <florin.coras@gmail.com>
Thu, 24 Aug 2017 15:21:53 +0000 (15:21 +0000)
Change-Id: Ieb81c5e157e342cbb532bd65f3b64059e5838691
Signed-off-by: Matus Fabian <matfabia@cisco.com>
src/plugins/nat/nat64_cli.c

index e55c4d5..8890038 100644 (file)
@@ -511,7 +511,8 @@ nat64_set_timeouts_command_fn (vlib_main_t * vm, unformat_input_t * input,
          if (nat64_set_tcp_timeouts (tcp_trans, tcp_est, tcp_incoming_syn))
            {
              error =
-               clib_error_return (0, "Invalid TCP transitory tiemout value");
+               clib_error_return (0,
+                                  "Invalid TCP transitory timeouts value");
              goto done;
            }
        }
@@ -521,7 +522,7 @@ nat64_set_timeouts_command_fn (vlib_main_t * vm, unformat_input_t * input,
            {
              error =
                clib_error_return (0,
-                                  "Invalid TCP established tiemout value");
+                                  "Invalid TCP established timeouts value");
              goto done;
            }
        }
@@ -532,7 +533,7 @@ nat64_set_timeouts_command_fn (vlib_main_t * vm, unformat_input_t * input,
            {
              error =
                clib_error_return (0,
-                                  "Invalid TCP incoming SYN tiemout value");
+                                  "Invalid TCP incoming SYN timeouts value");
              goto done;
            }
        }
@@ -893,7 +894,7 @@ VLIB_CLI_COMMAND (set_nat64_timeouts_command, static) = {
 
 /*?
  * @cliexpar
- * @cliexstart{show nat64 tiemouts}
+ * @cliexstart{show nat64 timeoutss}
  * Show NAT64 session timeouts:
  *  vpp# show nat64 timeouts
  *  NAT64 session timeouts:
@@ -906,7 +907,7 @@ VLIB_CLI_COMMAND (set_nat64_timeouts_command, static) = {
 ?*/
 VLIB_CLI_COMMAND (show_nat64_timeouts_command, static) = {
   .path = "show nat64 timeouts",
-  .short_help = "show nat64 temeouts",
+  .short_help = "show nat64 timeouts",
   .function = nat64_show_timeouts_command_fn,
 };