Browse Source

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

SVN-Revision: 35358
Jo-Philipp Wich 13 years ago
parent
commit
e804a663e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/network/services/hostapd/files/wpa_supplicant.sh

+ 1 - 1
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')"