ifconfig: consistently sort set/clear commands

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2023-06-19 13:42:46 -04:00
parent 42ceab3ea1
commit c079bcbc60

View file

@ -291,8 +291,8 @@ static struct cmd vlan_cmds[] = {
DEF_CMD("-vlanhwtag", IFCAP_VLAN_HWTAGGING, clearifcap),
DEF_CMD("vlanhwfilter", IFCAP_VLAN_HWFILTER, setifcap),
DEF_CMD("-vlanhwfilter", IFCAP_VLAN_HWFILTER, clearifcap),
DEF_CMD("-vlanhwtso", IFCAP_VLAN_HWTSO, clearifcap),
DEF_CMD("vlanhwtso", IFCAP_VLAN_HWTSO, setifcap),
DEF_CMD("-vlanhwtso", IFCAP_VLAN_HWTSO, clearifcap),
DEF_CMD("vlanhwcsum", IFCAP_VLAN_HWCSUM, setifcap),
DEF_CMD("-vlanhwcsum", IFCAP_VLAN_HWCSUM, clearifcap),
};