diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-21 19:41:47 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-21 19:41:47 +0000 |
commit | 7ed9369cb362aab97b1d52b2a382e0772d053300 (patch) | |
tree | a90ebb2d421c1dbacb930678fd32acfbb3d4c4a1 | |
parent | 481c9faf2052c2c03ca684a172f7c4c024117a5a (diff) | |
download | upstream-7ed9369cb362aab97b1d52b2a382e0772d053300.tar.gz upstream-7ed9369cb362aab97b1d52b2a382e0772d053300.tar.bz2 upstream-7ed9369cb362aab97b1d52b2a382e0772d053300.zip |
ppp: the pptp buffering option is not supported anymore, remove it
SVN-Revision: 32482
-rwxr-xr-x | package/ppp/files/ppp.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/package/ppp/files/ppp.sh b/package/ppp/files/ppp.sh index 5016be850d..25345b2072 100755 --- a/package/ppp/files/ppp.sh +++ b/package/ppp/files/ppp.sh @@ -169,7 +169,6 @@ proto_pppoa_teardown() { proto_pptp_init_config() { ppp_generic_init_config proto_config_add_string "server" - proto_config_add_boolean "buffering" available=1 no_device=1 } @@ -192,10 +191,6 @@ proto_pptp_setup() { exit 1 } - local buffering - json_get_var buffering buffering - [ "${buffering:-1}" == 0 ] && buffering="--nobuffer" || buffering= - local load for module in slhc ppp_generic ppp_async ppp_mppe ip_gre gre pptp; do grep -q "$module" /proc/modules && continue |