From 768a8cf86c5d95affcaa313ca19c74ae2f277107 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Thu, 19 Apr 2007 12:09:19 +0000 Subject: [PATCH] no need for the sed using printf --- net.Linux/pppd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net.Linux/pppd.sh b/net.Linux/pppd.sh index 625e0493..d2dce255 100644 --- a/net.Linux/pppd.sh +++ b/net.Linux/pppd.sh @@ -172,7 +172,7 @@ pppd_pre_start() { mark_service_inactive "${SVCNAME}" if [ -n "${username}" ] \ && [ -n "${password}" -o -z "${passwordset}" ] ; then - printf "%s" "${password}" | sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' | \ + printf "%s" "${password}" | \ eval start-stop-daemon --start --exec /usr/sbin/pppd \ --pidfile "/var/run/ppp-${IFACE}.pid" -- "${opts}" >/dev/null else