aboutsummaryrefslogtreecommitdiffstats
path: root/package/uhttpd/files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-11-06 15:44:42 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-11-06 15:44:42 +0000
commita039a7f762c95d5252af9cd059e029a1cf3f8bba (patch)
tree97cd376aaccdd148e65b62ab5f33b72ae7ba9455 /package/uhttpd/files
parentdb2558451b9ecb4b840ec49dd129ba3d898f54e7 (diff)
downloadupstream-a039a7f762c95d5252af9cd059e029a1cf3f8bba.tar.gz
upstream-a039a7f762c95d5252af9cd059e029a1cf3f8bba.tar.bz2
upstream-a039a7f762c95d5252af9cd059e029a1cf3f8bba.zip
uhttpd: Fix wrong certificate options with multiple words
For instance two word city names will result in weird certificates. Therefore adding the missing quotations. Signed-off-by: Linus Lüssing <linus.luessing@web.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28776 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uhttpd/files')
-rwxr-xr-xpackage/uhttpd/files/uhttpd.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/uhttpd/files/uhttpd.init b/package/uhttpd/files/uhttpd.init
index 069e16fff1..1ec009663b 100755
--- a/package/uhttpd/files/uhttpd.init
+++ b/package/uhttpd/files/uhttpd.init
@@ -44,7 +44,7 @@ generate_keys() {
[ -x "$PX5G_BIN" ] && {
$PX5G_BIN selfsigned -der \
-days ${days:-730} -newkey rsa:${bits:-1024} -keyout "$UHTTPD_KEY" -out "$UHTTPD_CERT" \
- -subj /C=${country:-DE}/ST=${state:-Saxony}/L=${location:-Leipzig}/CN=${commonname:-OpenWrt}
+ -subj /C="${country:-DE}"/ST="${state:-Saxony}"/L="${location:-Leipzig}"/CN="${commonname:-OpenWrt}"
}
}