Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Jun 2023 20:09:53 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: c079bcbc60e8 - main - ifconfig: consistently sort set/clear commands
Message-ID:  <202306252009.35PK9rOP092979@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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),
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202306252009.35PK9rOP092979>