From: Felix Fietkau Date: Wed, 25 Sep 2013 07:44:48 +0000 (+0000) Subject: uhttpd: fix appending https ports to cmdline X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=69b42a6ae5c07b18ff1a289996e12c7e4ce7fd97 uhttpd: fix appending https ports to cmdline Otherwise it is started only on non-secure ports. Signed-off-by: Wojciech Dubowik SVN-Revision: 38171 --- diff --git a/package/network/services/uhttpd/files/uhttpd.init b/package/network/services/uhttpd/files/uhttpd.init index 51f7547ca8..ce304831eb 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 } }