svn commit: r325803 - stable/10/etc

Eugene Grosbein eugen at FreeBSD.org
Tue Nov 14 11:02:47 UTC 2017


Author: eugen
Date: Tue Nov 14 11:02:46 2017
New Revision: 325803
URL: https://svnweb.freebsd.org/changeset/base/325803

Log:
  Fix breakage in r325799 that removed a bit of code by my mistake.
  
  Approved by:		avg (mentor)

Modified:
  stable/10/etc/network.subr

Modified: stable/10/etc/network.subr
==============================================================================
--- stable/10/etc/network.subr	Tue Nov 14 10:49:07 2017	(r325802)
+++ stable/10/etc/network.subr	Tue Nov 14 11:02:46 2017	(r325803)
@@ -216,6 +216,10 @@ ifconfig_up()
 	ifalias $1 link alias
 	ifalias $1 ether alias
 
+	if [ ${_cfg} -eq 0 ]; then
+		${IFCONFIG_CMD} $1 up
+	fi
+
 	_ifconfig_descr=`get_if_var $1 ifconfig_IF_descr`
 	if [ -n "${_ifconfig_descr}" ]; then
 		${IFCONFIG_CMD} $1 description "${_ifconfig_descr}"


More information about the svn-src-all mailing list