svn commit: r333787 - head/sbin/ifconfig

Andrey V. Elsukov ae at FreeBSD.org
Fri May 18 12:12:25 UTC 2018


Author: ae
Date: Fri May 18 12:12:24 2018
New Revision: 333787
URL: https://svnweb.freebsd.org/changeset/base/333787

Log:
  Make the name of option that toggles IFCAP_HWRXTSTMP capability to
  match the name of this capability. It was added recently and is not merged
  to stable branch, so I hope it is not too late to change the name.
  
  Reviewed by:	kib
  Differential Revision:	https://reviews.freebsd.org/D15475

Modified:
  head/sbin/ifconfig/ifconfig.c

Modified: head/sbin/ifconfig/ifconfig.c
==============================================================================
--- head/sbin/ifconfig/ifconfig.c	Fri May 18 11:32:48 2018	(r333786)
+++ head/sbin/ifconfig/ifconfig.c	Fri May 18 12:12:24 2018	(r333787)
@@ -1487,8 +1487,8 @@ static struct cmd basic_cmds[] = {
 	DEF_CMD("-wol_magic",	-IFCAP_WOL_MAGIC,	setifcap),
 	DEF_CMD("txrtlmt",	IFCAP_TXRTLMT,	setifcap),
 	DEF_CMD("-txrtlmt",	-IFCAP_TXRTLMT,	setifcap),
-	DEF_CMD("hwrxtsmp",	IFCAP_HWRXTSTMP,	setifcap),
-	DEF_CMD("-hwrxtsmp",	-IFCAP_HWRXTSTMP,	setifcap),
+	DEF_CMD("hwrxtstmp",	IFCAP_HWRXTSTMP,	setifcap),
+	DEF_CMD("-hwrxtstmp",	-IFCAP_HWRXTSTMP,	setifcap),
 	DEF_CMD("normal",	-IFF_LINK0,	setifflags),
 	DEF_CMD("compress",	IFF_LINK0,	setifflags),
 	DEF_CMD("noicmp",	IFF_LINK1,	setifflags),


More information about the svn-src-head mailing list