diff options
author | Damjan Marion <damarion@cisco.com> | 2018-07-19 20:42:08 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-07-19 22:31:11 +0000 |
commit | 7d98a12f29d5b9696df98b8af2f128614a4f0360 (patch) | |
tree | 8d78626e0e482e4a004bc6a8fe573a7f0c0defc4 /src/vnet/l2tp | |
parent | 3d0fadc01fa92664b8ebc5d8400b6344ee7e92df (diff) |
Remove unused argument to vlib_feature_next
Change-Id: Ieb8b53977fc8484c19780941e232ee072b667de3
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/l2tp')
-rw-r--r-- | src/vnet/l2tp/decap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/l2tp/decap.c b/src/vnet/l2tp/decap.c index 4610412954d..304862b5ee6 100644 --- a/src/vnet/l2tp/decap.c +++ b/src/vnet/l2tp/decap.c @@ -219,7 +219,7 @@ done: { /* Go to next node on the ip6 configuration chain */ if (PREDICT_TRUE (session != 0)) - vnet_feature_next (session->sw_if_index, &next_index, b); + vnet_feature_next (&next_index, b); } } |