From: Felix Fietkau Date: Tue, 12 Sep 2006 00:34:46 +0000 (+0000) Subject: allow spaces in the keepalive option X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=82962cacd0f3f81f4980faa2018c94dc2ffd3f7c;p=librecmc%2Flibrecmc.git allow spaces in the keepalive option SVN-Revision: 4781 --- diff --git a/openwrt/package/ppp/files/ppp.sh b/openwrt/package/ppp/files/ppp.sh index e6008f40c8..51a19555e8 100644 --- a/openwrt/package/ppp/files/ppp.sh +++ b/openwrt/package/ppp/files/ppp.sh @@ -13,13 +13,13 @@ start_pppd() { config_get username "$cfg" username config_get password "$cfg" password config_get keepalive "$cfg" keepalive - interval="${keepalive%%*,}" + interval="${keepalive%%*[, ]}" [ "$interval" != "$keepalive" ] || interval=5 config_get demand "$cfg" demand [ -n "$demand" ] && echo "nameserver 1.1.1.1" > /tmp/resolv.conf /usr/sbin/pppd "$@" \ - ${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive##,*}} \ + ${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive##[, ]*}} \ ${demand:+precompiled-active-filter /etc/ppp/filter demand idle }${demand:-persist} \ usepeerdns \ defaultroute \