diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-09-23 15:24:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-09-23 15:24:02 +0000 |
commit | ebd408630fb6e08feed65893c6136f10cc715759 (patch) | |
tree | 061f8ca6ddd0df7a8e4b83a841bb5df6ac67e4e5 /package | |
parent | cd9ca196b67a5bc984e824a1ad295d255e80cf5f (diff) | |
download | upstream-ebd408630fb6e08feed65893c6136f10cc715759.tar.gz upstream-ebd408630fb6e08feed65893c6136f10cc715759.tar.bz2 upstream-ebd408630fb6e08feed65893c6136f10cc715759.zip |
fix multiple instances of busybox httpd (thx, Yanira)
SVN-Revision: 12663
Diffstat (limited to 'package')
-rwxr-xr-x | package/busybox/files/httpd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/files/httpd b/package/busybox/files/httpd index f7e166d0ad..3714a02de5 100755 --- a/package/busybox/files/httpd +++ b/package/busybox/files/httpd @@ -12,7 +12,7 @@ system_config() { httpd_config() { local cfg="$1" - local c_file port realm home + local c_file port realm home args config_get c_file "$cfg" c_file [ -n "$c_file" -a -f "$c_file" ] && append args "-c \"$c_file\"" |