From: Jo-Philipp Wich Date: Mon, 28 Jan 2013 18:05:33 +0000 (+0000) Subject: hostapd: don't configure wpa_supplicant with empty password="" if no password is... X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e804a663e30e5cd5882b511c1ee79d09054ef52f;p=librecmc%2Flibrecmc.git hostapd: don't configure wpa_supplicant with empty password="" if no password is specified (#12912) SVN-Revision: 35358 --- diff --git a/package/network/services/hostapd/files/wpa_supplicant.sh b/package/network/services/hostapd/files/wpa_supplicant.sh index 127c5a70f5..0b5e1d391f 100644 --- a/package/network/services/hostapd/files/wpa_supplicant.sh +++ b/package/network/services/hostapd/files/wpa_supplicant.sh @@ -106,7 +106,7 @@ wpa_supplicant_setup_vif() { config_get password "$vif" password phase2="phase2=\"auth=${auth:-MSCHAPV2}\"" identity="identity=\"$identity\"" - password="password=\"$password\"" + password="${password:+password=\"$password\"}" ;; esac eap_type="eap=$(echo $eap_type | tr 'a-z' 'A-Z')"