diff options
author | Roy Marples <roy@marples.name> | 2007-04-18 14:23:50 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-04-18 14:23:50 +0000 |
commit | 6617d946ec2915a198926c62b7a42785ff3e0a4b (patch) | |
tree | 44c0ceec131ba36ea860055de33e4209d643f6e5 | |
parent | 35dc4e3424e6cdebfdef21a5d29d4a916dfaa048 (diff) |
get pppoa the right way around
-rw-r--r-- | net.Linux/pppd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net.Linux/pppd.sh b/net.Linux/pppd.sh index ebea3dd4..a22a4a18 100644 --- a/net.Linux/pppd.sh +++ b/net.Linux/pppd.sh @@ -129,8 +129,8 @@ pppd_start() { set -- ${i} case "$1" in passwordfd) continue;; - pppoa) shift; set -- "rp-pppoe" "$@" ;; - pppoe) shift; set -- "pppoatm" "$@" ;; + pppoa) shift; set -- "pppoatm" "$@" ;; + pppoe) shift; set -- "rp-pppoe" "$@" ;; capi) shift; set -- "capiplugin" "$@" ;; esac case "$1" in |