diff options
Diffstat (limited to 'net/pppd.sh')
-rw-r--r-- | net/pppd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/pppd.sh b/net/pppd.sh index 5967f0b8..a8c88820 100644 --- a/net/pppd.sh +++ b/net/pppd.sh @@ -90,7 +90,7 @@ pppd_pre_start() eval passwordset=\$\{password_${IFVAR}-x\} if [ -n "${username}" ] \ && [ -n "${password}" -o -z "${passwordset}" ]; then - opts="${opts} plugin passwordfd.so passwordfd 0" + opts="plugin passwordfd.so ${opts} passwordfd 0" fi if ! ${hasdefaultmetric}; then @@ -155,7 +155,7 @@ pppd_pre_start() opts="${opts} connect true" set -- "$@" "${link}" fi - opts="${opts} plugin $1.so" + opts="plugin $1.so ${opts}" shift opts="${opts} $@" done |