diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2020-07-02 10:56:57 +0200 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-08-18 19:47:21 +0000 |
commit | 15c9670d9d8c86a3ec242d5b106bc41d9879c13d (patch) | |
tree | c9a65916d3e26aaaf115ff52f8d2b2e00c24de75 /src/vnet | |
parent | 64c2689c3e67678520002317eadd31b461c7ad6c (diff) |
ip: fix the order in ip4 punt redirect
Type: fix
Fixes: a84cb715f5a4366dd2f32de18ad92bec566924da
Change-Id: Id448d6ae9cfdd3122e8187121c509412835117c5
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
(cherry picked from commit c6eae9c079defa4812270945d614c4598db262d8)
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/ip/ip4_punt_drop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/ip/ip4_punt_drop.c b/src/vnet/ip/ip4_punt_drop.c index 114ef29e195..819eaa14861 100644 --- a/src/vnet/ip/ip4_punt_drop.c +++ b/src/vnet/ip/ip4_punt_drop.c @@ -362,8 +362,8 @@ ip4_punt_redirect_cmd (vlib_main_t * vm, unformat_vnet_sw_interface, vnm, &rx_sw_if_index)) ; else if (unformat (line_input, "via %U %U", - unformat_ip4_address, unformat_vnet_sw_interface, - &nh.ip4, vnm, &tx_sw_if_index)) + unformat_ip4_address, &nh.ip4, + unformat_vnet_sw_interface, vnm, &tx_sw_if_index)) ; else if (unformat (line_input, "via %U", unformat_vnet_sw_interface, vnm, &tx_sw_if_index)) |