svn commit: r197175 - head/etc/rc.d

Bjoern A. Zeeb bz at FreeBSD.org
Sun Sep 13 20:19:02 UTC 2009


Author: bz
Date: Sun Sep 13 20:19:02 2009
New Revision: 197175
URL: http://svn.freebsd.org/changeset/base/197175

Log:
  Correct a copy and paste error using the variable name from the
  legacy IP handling rather than the IPv6 version.
  
  Reported by:	Pegasus Mc Cleaft (ken mthelicon.com)
  Tested by:	Pegasus Mc Cleaft (ken mthelicon.com)
  MFC after:	2 days
  X-MFX with:	r197139

Modified:
  head/etc/rc.d/routing

Modified: head/etc/rc.d/routing
==============================================================================
--- head/etc/rc.d/routing	Sun Sep 13 18:45:59 2009	(r197174)
+++ head/etc/rc.d/routing	Sun Sep 13 20:19:02 2009	(r197175)
@@ -132,7 +132,7 @@ inet6_static()
 	if [ -n "${ipv6_static_routes}" ]; then
 		for i in ${ipv6_static_routes}; do
 			ipv6_route_args=`get_if_var $i ipv6_route_IF`
-			route ${_action} -inet6 ${route_args}
+			route ${_action} -inet6 ${ipv6_route_args}
 		done
 	fi
 


More information about the svn-src-head mailing list