aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhenlei Huang <zlei@FreeBSD.org>2025-09-19 19:18:27 +0000
committerZhenlei Huang <zlei@FreeBSD.org>2025-09-19 19:18:27 +0000
commit5017fdb728811fd3e15d7151524378f49a49aee1 (patch)
tree4092d073f80189a2fba82e69beb242eeb779d0b6
parent72924ce99c7f177db486bd2764a76bcf25892a17 (diff)
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
-rw-r--r--sbin/ifconfig/ifconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c
index c323a26ec1a8..41d2f4603983 100644
--- a/sbin/ifconfig/ifconfig.c
+++ b/sbin/ifconfig/ifconfig.c
@@ -1665,7 +1665,7 @@ static const char *IFCAPBITS[] = {
[22] = "TXCSUM_IPV6",
[24] = "TXRTLMT",
[25] = "HWRXTSTMP",
- [26] = "NOMAP",
+ [26] = "MEXTPG",
[27] = "TXTLS4",
[28] = "TXTLS6",
[29] = "VXLAN_HWCSUM",