diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-06 15:44:42 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-06 15:44:42 +0000 |
commit | 6037187a801737b2829aff1b1fcddb2b2816c9b6 (patch) | |
tree | bf58b91e527615fb756709f23b1abc234e0d11b8 /package/uhttpd | |
parent | 2201e32df32f7a0ab110cab57cf2b228743f2d78 (diff) | |
download | upstream-6037187a801737b2829aff1b1fcddb2b2816c9b6.tar.gz upstream-6037187a801737b2829aff1b1fcddb2b2816c9b6.tar.bz2 upstream-6037187a801737b2829aff1b1fcddb2b2816c9b6.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>
SVN-Revision: 28776
Diffstat (limited to 'package/uhttpd')
-rwxr-xr-x | package/uhttpd/files/uhttpd.init | 2 |
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}" } } |