git: c079bcbc60e8 - main - ifconfig: consistently sort set/clear commands

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Sun, 25 Jun 2023 20:09:53 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=c079bcbc60e8d830e6d59bb96b43dca51a84167e

commit c079bcbc60e8d830e6d59bb96b43dca51a84167e
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-06-19 17:42:46 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-06-25 20:09:26 +0000

    ifconfig: consistently sort set/clear commands
    
    Sponsored by:   The FreeBSD Foundation
---
 sbin/ifconfig/ifvlan.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sbin/ifconfig/ifvlan.c b/sbin/ifconfig/ifvlan.c
index adc3c4692f8b..7fb63b8142f4 100644
--- a/sbin/ifconfig/ifvlan.c
+++ b/sbin/ifconfig/ifvlan.c
@@ -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),
 };