diff options
author | John Crispin <john@openwrt.org> | 2008-07-29 23:40:19 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2008-07-29 23:40:19 +0000 |
commit | b639fc4b005b3c83458e1f66d3fc84530828319a (patch) | |
tree | ca1bcf756c8e65a16af76e94538ef543a4df6ace /package/ppp/files/etc | |
parent | 970f41ad18474ff7b4e84935356f3f546085dec7 (diff) | |
download | upstream-b639fc4b005b3c83458e1f66d3fc84530828319a.tar.gz upstream-b639fc4b005b3c83458e1f66d3fc84530828319a.tar.bz2 upstream-b639fc4b005b3c83458e1f66d3fc84530828319a.zip |
fixes ppp ipv6 scripts, signed-off-by: Alina Friedrichsen
SVN-Revision: 11998
Diffstat (limited to 'package/ppp/files/etc')
-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 |