diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-09-25 07:44:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-09-25 07:44:48 +0000 |
commit | 59c05778f0464a0ce2adc236a37d02c45fc3d25d (patch) | |
tree | 3e7bdb6c7833d9e42639b5db22f38e710176fade /package/network/services | |
parent | 5166bb0b1bca795ce53157f32f81b3c7c9b5e555 (diff) | |
download | mtk-20170518-59c05778f0464a0ce2adc236a37d02c45fc3d25d.zip mtk-20170518-59c05778f0464a0ce2adc236a37d02c45fc3d25d.tar.gz mtk-20170518-59c05778f0464a0ce2adc236a37d02c45fc3d25d.tar.bz2 |
uhttpd: fix appending https ports to cmdline
Otherwise it is started only on non-secure ports.
Signed-off-by: Wojciech Dubowik <Wojciech.Dubowik@neratec.com>
SVN-Revision: 38171
Diffstat (limited to 'package/network/services')
-rwxr-xr-x | package/network/services/uhttpd/files/uhttpd.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/uhttpd/files/uhttpd.init b/package/network/services/uhttpd/files/uhttpd.init index 51f7547..ce30483 100755 --- a/package/network/services/uhttpd/files/uhttpd.init +++ b/package/network/services/uhttpd/files/uhttpd.init @@ -112,7 +112,7 @@ start_instance() append_arg "$cfg" key "-K" for listen in $https; do - append UHTTPD_ARGS "-s $listen" + procd_append_param command -s "$listen" done } } |