svn commit: r193199 - head/etc

Doug Barton dougb at FreeBSD.org
Mon Jun 1 05:37:14 UTC 2009


Author: dougb
Date: Mon Jun  1 05:37:13 2009
New Revision: 193199
URL: http://svn.freebsd.org/changeset/base/193199

Log:
  Eliminate the warning that "Values of network_interfaces other than
  AUTO are deprecated.' There is no good reason to deprecate them, and
  setting this to different values can be useful for custom solutions
  and/or one-off configuration problems.

Modified:
  head/etc/network.subr

Modified: head/etc/network.subr
==============================================================================
--- head/etc/network.subr	Mon Jun  1 05:35:03 2009	(r193198)
+++ head/etc/network.subr	Mon Jun  1 05:37:13 2009	(r193199)
@@ -726,10 +726,6 @@ list_net_interfaces()
 		_tmplist="${_lo}${_tmplist}"
 		;;
 	*)
-		if [ -z "$type" ]; then
-			warn "Values of network_interfaces other than" \
-			    "AUTO are deprecated"
-		fi
 		_tmplist="${network_interfaces} ${cloned_interfaces}"
 		;;
 	esac


More information about the svn-src-all mailing list