index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
about
summary
refs
log
tree
commit
diff
path:
root
/
package
/
pptp
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Felix Fietkau <nbd@openwrt.org>
2012-05-14 20:58:20 +0000
committer
Felix Fietkau <nbd@openwrt.org>
2012-05-14 20:58:20 +0000
commit
3ee1a3abf0b08a05bfccabc81d72f6d9c825e835
(
patch
)
tree
13122f9a12c0bcbea1a747308548cad84b0cd1d8
/
package/pptp
parent
189c25d31875d8f4ad901fa71912fcbd099f37e2
(
diff
)
pptp: use the new json_get_vars function
SVN-Revision: 31725
Diffstat
(limited to 'package/pptp')
-rwxr-xr-x
package/pptp/files/pptp.sh
3
1 files changed, 1 insertions, 2 deletions
diff --git a/package/pptp/files/pptp.sh b/package/pptp/files/pptp.sh
index 347df346c0..4ce39f6f80 100755
--- a/
package/pptp/files/pptp.sh
+++ b/
package/pptp/files/pptp.sh
@@ -20,7 +20,7 @@ proto_pptp_setup() {
local iface="$2"
local load
- json_get_var server server
+ json_get_vars server buffering
serv_addr=
for ip in $(resolveip -t 5 "$server"); do
@@ -34,7 +34,6 @@ proto_pptp_setup() {
exit 1
}
- json_get_var buffering buffering
[ "${buffering:-1}" == 0 ] && buffering="--nobuffer" || buffering=
for module in slhc ppp_generic ppp_async ip_gre; do