diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-06-26 18:11:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-06-26 18:11:04 +0000 |
commit | 8079d54678fea04bbe1689b534fd75fd46a72831 (patch) | |
tree | fb96b41ba8460b352c6d7b886a586c33603c2652 /package/ppp/files | |
parent | 2f5a5497be451465c17e6134a10923ff18fbc32b (diff) | |
download | upstream-8079d54678fea04bbe1689b534fd75fd46a72831.tar.gz upstream-8079d54678fea04bbe1689b534fd75fd46a72831.tar.bz2 upstream-8079d54678fea04bbe1689b534fd75fd46a72831.zip |
ppp: interpret "demand" option as timeout in seconds (#7517)
SVN-Revision: 21903
Diffstat (limited to 'package/ppp/files')
-rw-r--r-- | package/ppp/files/ppp.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/ppp/files/ppp.sh b/package/ppp/files/ppp.sh index 53cfb1be1a..46a66c969c 100644 --- a/package/ppp/files/ppp.sh +++ b/package/ppp/files/ppp.sh @@ -92,11 +92,11 @@ start_pppd() { } local demand - config_get_bool demand "$cfg" demand 0 + config_get demand "$cfg" demand 0 local demandargs - [ "$demand" -eq 1 ] && { - demandargs="precompiled-active-filter /etc/ppp/filter demand idle" + [ "$demand" -gt 0 ] && { + demandargs="precompiled-active-filter /etc/ppp/filter demand idle $demand" [ "$has_dns" -eq 0 ] && add_dns "$cfg" 1.1.1.1 } || { demandargs="persist" |