diff options
Diffstat (limited to 'net.Linux')
-rw-r--r-- | net.Linux/pppd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net.Linux/pppd.sh b/net.Linux/pppd.sh index cc25458c..30154040 100644 --- a/net.Linux/pppd.sh +++ b/net.Linux/pppd.sh @@ -176,7 +176,7 @@ pppd_start() { mark_service_inactive "${SVCNAME}" if [ -n "${username}" ] \ && [ -n "${password}" -o -z "${passwordset}" ] ; then - echo "${password}" | sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' | \ + printf "${password}" | sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' | \ eval start-stop-daemon --start --exec /usr/sbin/pppd \ --pidfile "/var/run/ppp-${IFACE}.pid" -- "${opts}" >/dev/null else |