diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-03-12 21:19:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-12 21:19:08 +0200 |
commit | de88c2ee697fe73e406cebc55f59325003cdffcc (patch) | |
tree | c5ef64f078a2b17c1e7e7c5a2dcbb358b3bce7f3 | |
parent | 28e3b328545529c19429ce88c7d1769e64e2de0f (diff) | |
parent | ee87dd1daa7fe34e66091f527f38a8f5fbc38ab9 (diff) |
Merge pull request #1680 from rtau/bugfix-ocserv_compr
luci-app-ocserv: match default value of compression
-rw-r--r-- | applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua b/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua index 74edaf489..396dedd4a 100644 --- a/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua +++ b/applications/luci-app-ocserv/luasrc/model/cbi/ocserv/main.lua @@ -86,7 +86,7 @@ pip.default = "1" local compr = s:taboption("general", Flag, "compression", translate("Enable compression"), translate("Enable compression")) -compr.default = "1" +compr.default = "0" local udp = s:taboption("general", Flag, "udp", translate("Enable UDP"), translate("Enable UDP channel support; this must be enabled unless you know what you are doing")) |