From: florian Date: Wed, 13 Aug 2008 13:30:27 +0000 (+0000) Subject: Fix a bug when parsing ca_cert and eap_type with wpa_supplicant, this should only... X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=54a7242228f97227299fa92bcde3a5b4a0327d20 Fix a bug when parsing ca_cert and eap_type with wpa_supplicant, this should only be set for 802.1x setups git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12292 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/wpa_supplicant/files/wpa_supplicant.sh b/package/wpa_supplicant/files/wpa_supplicant.sh index 192c90354..37ebef7a4 100644 --- a/package/wpa_supplicant/files/wpa_supplicant.sh +++ b/package/wpa_supplicant/files/wpa_supplicant.sh @@ -32,6 +32,7 @@ wpa_supplicant_setup_vif() { proto='WPA2' key_mgmt='WPA-EAP' config_get ca_cert "$vif" ca_cert + ca_cert="ca_cert=\"$ca_cert\"" case "$eap_type" in tls|TLS) pairwise='pairwise=CCMP' @@ -50,12 +51,12 @@ wpa_supplicant_setup_vif() { password="password=\"$password\"" ;; esac + eap_type="eap_type=$(echo $eap_type | tr 'a-z' 'A-Z')" ;; esac config_get ifname "$vif" ifname config_get bridge "$vif" bridge config_get ssid "$vif" ssid - eap_type=$(echo $eap_type | tr 'a-z' 'A-Z') cat > /var/run/wpa_supplicant-$ifname.conf <