diff options
author | Vladislav Grishenko <themiron@yandex-team.ru> | 2022-08-04 20:36:45 +0500 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2024-03-05 18:48:28 +0000 |
commit | fb9d1ac843884aca79873577b53f6254e7933478 (patch) | |
tree | 7848ba7c81826ceafd886cfbbfd76fa9c1bcf562 /src/vnet/dpo/l3_proxy_dpo.c | |
parent | 7ad751ba53a792cc6beaade1eb61d0bd9dc87ea5 (diff) |
vnet: fix format of deleted sw interfaces
As similar 535364e90459566b603661c3dbe360c72f59ad71 is
merged, printing possibly deleted interfaces by index
only in all the rest cases.
Type: improvement
Signed-off-by: Vladislav Grishenko <themiron@yandex-team.ru>
Change-Id: I4fa58b382c0279ff893523ba0188fdb9b09e10af
Diffstat (limited to 'src/vnet/dpo/l3_proxy_dpo.c')
-rw-r--r-- | src/vnet/dpo/l3_proxy_dpo.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vnet/dpo/l3_proxy_dpo.c b/src/vnet/dpo/l3_proxy_dpo.c index 41156301a0e..f89554d775f 100644 --- a/src/vnet/dpo/l3_proxy_dpo.c +++ b/src/vnet/dpo/l3_proxy_dpo.c @@ -116,9 +116,8 @@ format_l3_proxy_dpo (u8 *s, va_list *ap) if (~0 != l3p->l3p_sw_if_index) { - return (format(s, "dpo-l3_proxy: %U", - format_vnet_sw_interface_name, vnm, - vnet_get_sw_interface(vnm, l3p->l3p_sw_if_index))); + return (format (s, "dpo-l3_proxy: %U", format_vnet_sw_if_index_name, vnm, + l3p->l3p_sw_if_index)); } else { |