diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2018-09-22 05:32:50 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-09-24 08:08:03 +0000 |
commit | bdc0e6b7204ea0211d4f7881497e4306586fb9ef (patch) | |
tree | 199b4da1aea679f0626451692a57476a70286524 /src/plugins/gtpu/gtpu_decap.c | |
parent | 6a4375e02d8dd4ebcc2f79ee9f6abbafdd2f674c (diff) |
Trivial: Clean up some typos.
Change-Id: I085615fde1f966490f30ed5d32017b8b088cfd59
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'src/plugins/gtpu/gtpu_decap.c')
-rw-r--r-- | src/plugins/gtpu/gtpu_decap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/gtpu/gtpu_decap.c b/src/plugins/gtpu/gtpu_decap.c index 1aac8b55745..d52ccc0219c 100644 --- a/src/plugins/gtpu/gtpu_decap.c +++ b/src/plugins/gtpu/gtpu_decap.c @@ -213,7 +213,7 @@ gtpu_input (vlib_main_t * vm, tunnel_index0 = last_tunnel_index; t0 = pool_elt_at_index (gtm->tunnels, tunnel_index0); - /* Validate GTPU tunnel encap-fib index agaist packet */ + /* Validate GTPU tunnel encap-fib index against packet */ if (PREDICT_FALSE (validate_gtpu_fib (b0, t0, is_ip4) == 0)) { error0 = GTPU_ERROR_NO_SUCH_TUNNEL; @@ -263,7 +263,7 @@ gtpu_input (vlib_main_t * vm, tunnel_index0 = last_tunnel_index; t0 = pool_elt_at_index (gtm->tunnels, tunnel_index0); - /* Validate GTPU tunnel encap-fib index agaist packet */ + /* Validate GTPU tunnel encap-fib index against packet */ if (PREDICT_FALSE (validate_gtpu_fib (b0, t0, is_ip4) == 0)) { error0 = GTPU_ERROR_NO_SUCH_TUNNEL; @@ -387,7 +387,7 @@ gtpu_input (vlib_main_t * vm, tunnel_index1 = last_tunnel_index; t1 = pool_elt_at_index (gtm->tunnels, tunnel_index1); - /* Validate GTPU tunnel encap-fib index agaist packet */ + /* Validate GTPU tunnel encap-fib index against packet */ if (PREDICT_FALSE (validate_gtpu_fib (b1, t1, is_ip4) == 0)) { error1 = GTPU_ERROR_NO_SUCH_TUNNEL; @@ -439,7 +439,7 @@ gtpu_input (vlib_main_t * vm, tunnel_index1 = last_tunnel_index; t1 = pool_elt_at_index (gtm->tunnels, tunnel_index1); - /* Validate GTPU tunnel encap-fib index agaist packet */ + /* Validate GTPU tunnel encap-fib index against packet */ if (PREDICT_FALSE (validate_gtpu_fib (b1, t1, is_ip4) == 0)) { error1 = GTPU_ERROR_NO_SUCH_TUNNEL; @@ -616,7 +616,7 @@ gtpu_input (vlib_main_t * vm, tunnel_index0 = last_tunnel_index; t0 = pool_elt_at_index (gtm->tunnels, tunnel_index0); - /* Validate GTPU tunnel encap-fib index agaist packet */ + /* Validate GTPU tunnel encap-fib index against packet */ if (PREDICT_FALSE (validate_gtpu_fib (b0, t0, is_ip4) == 0)) { error0 = GTPU_ERROR_NO_SUCH_TUNNEL; @@ -666,7 +666,7 @@ gtpu_input (vlib_main_t * vm, tunnel_index0 = last_tunnel_index; t0 = pool_elt_at_index (gtm->tunnels, tunnel_index0); - /* Validate GTPU tunnel encap-fib index agaist packet */ + /* Validate GTPU tunnel encap-fib index against packet */ if (PREDICT_FALSE (validate_gtpu_fib (b0, t0, is_ip4) == 0)) { error0 = GTPU_ERROR_NO_SUCH_TUNNEL; |