Date: Sun, 13 Sep 2009 20:19:02 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r197175 - head/etc/rc.d Message-ID: <200909132019.n8DKJ2Yi030704@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909132019.n8DKJ2Yi030704>