hostapd: don't configure wpa_supplicant with empty password="" if no password is specified (#12912)

SVN-Revision: 35358
owl
Jo-Philipp Wich 2013-01-28 18:05:33 +00:00
parent a0f7a3c214
commit e804a663e3
1 changed files with 1 additions and 1 deletions

View File

@ -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')"