From 9a29980d3e3f6b70dd62c04b3cb24a718e7e04c8 Mon Sep 17 00:00:00 2001 From: Zhenlei Huang Date: Sat, 20 Sep 2025 03:18:27 +0800 Subject: [PATCH] ifconfig: Fix the display of the IFCAP_MEXTPG capability without netlink Historically this capability is IFCAP_NOMAP but it was renamed to IFCAP_MEXTPG. Catch up with the change 3f43ada98c89. PR: 289545 Fixes: 3f43ada98c89 Catch up with 6edfd179c86: mechanically rename IFCAP_NOMAP to IFCAP_MEXTPG MFC after: 3 days (cherry picked from commit 5017fdb728811fd3e15d7151524378f49a49aee1) (cherry picked from commit 5f472754ba6f9cc95607956c6e2ad6483c9dd157) --- sbin/ifconfig/ifconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index 6f2196433a3..037f360d1b7 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1674,7 +1674,7 @@ static const char *IFCAPBITS[] = { [22] = "TXCSUM_IPV6", [24] = "TXRTLMT", [25] = "HWRXTSTMP", - [26] = "NOMAP", + [26] = "MEXTPG", [27] = "TXTLS4", [28] = "TXTLS6", [29] = "VXLAN_HWCSUM",