diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-08-13 13:30:27 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-08-13 13:30:27 +0000 |
commit | 5fb437fb8548b40eb5ddb77a585f6cac23d11b7d (patch) | |
tree | 980e77ea65125b8c5d41d04297f59109896790d5 /package/wpa_supplicant/files | |
parent | 982939c9108383132f9b588a0ef4833347515bdd (diff) | |
download | upstream-5fb437fb8548b40eb5ddb77a585f6cac23d11b7d.tar.gz upstream-5fb437fb8548b40eb5ddb77a585f6cac23d11b7d.tar.bz2 upstream-5fb437fb8548b40eb5ddb77a585f6cac23d11b7d.zip |
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
Diffstat (limited to 'package/wpa_supplicant/files')
-rw-r--r-- | package/wpa_supplicant/files/wpa_supplicant.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/wpa_supplicant/files/wpa_supplicant.sh b/package/wpa_supplicant/files/wpa_supplicant.sh index 192c903540..37ebef7a4b 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 <<EOF network={ scan_ssid=1 @@ -65,8 +66,8 @@ network={ $passphrase $pairwise $group - eap=$eap_type - ca_cert="$ca_cert" + $eap_type + $ca_cert $priv_key $priv_key_pwd $phase2 |