diff options
author | John Crispin <blogic@openwrt.org> | 2008-07-29 23:40:19 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2008-07-29 23:40:19 +0000 |
commit | a155b9370d80b644189bd7cd9f17b736162b8b7d (patch) | |
tree | ee7b06b56caddb0e34315266f26fc162574d3d2a /package/ppp | |
parent | 56bd8193188213000186fb9e4cd49a356be7e290 (diff) | |
download | master-187ad058-a155b9370d80b644189bd7cd9f17b736162b8b7d.tar.gz master-187ad058-a155b9370d80b644189bd7cd9f17b736162b8b7d.tar.bz2 master-187ad058-a155b9370d80b644189bd7cd9f17b736162b8b7d.zip |
fixes ppp ipv6 scripts, signed-off-by: Alina Friedrichsen
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11998 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ppp')
-rw-r--r-- | package/ppp/files/etc/ppp/ipv6-down | 2 | ||||
-rw-r--r-- | package/ppp/files/etc/ppp/ipv6-up | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/ppp/files/etc/ppp/ipv6-down b/package/ppp/files/etc/ppp/ipv6-down index a4e0491a80..436b91ded7 100644 --- a/package/ppp/files/etc/ppp/ipv6-down +++ b/package/ppp/files/etc/ppp/ipv6-down @@ -1,6 +1,6 @@ #!/bin/sh -gw=$4 +gw=$5 dev=$1 cfg=$6 diff --git a/package/ppp/files/etc/ppp/ipv6-up b/package/ppp/files/etc/ppp/ipv6-up index 9ece44ad83..5162455fa8 100644 --- a/package/ppp/files/etc/ppp/ipv6-up +++ b/package/ppp/files/etc/ppp/ipv6-up @@ -1,6 +1,6 @@ #!/bin/sh -gw=$4 +gw=$5 dev=$1 cfg=$6 |