diff options
author | bz <bz@FreeBSD.org> | 2009-09-13 20:19:02 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2009-09-13 20:19:02 +0000 |
commit | ebd5b6a51438a426e317d148c9a3542ced35fcc1 (patch) | |
tree | fbe181a7be2389a2351e8acf4fc256674f361249 /etc | |
parent | b1b257367ed19bea3ee42eb90df6e7b0973bbb39 (diff) | |
download | FreeBSD-src-ebd5b6a51438a426e317d148c9a3542ced35fcc1.zip FreeBSD-src-ebd5b6a51438a426e317d148c9a3542ced35fcc1.tar.gz |
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
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.d/routing | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/routing b/etc/rc.d/routing index f75965c..787eaa1 100755 --- a/etc/rc.d/routing +++ b/etc/rc.d/routing @@ -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 |