This patch removes redundant code in the psk handling in wpa_supplicant.sh.
Regards, Stijn
Index: package/hostapd/files/wpa_supplicant.sh =================================================================== --- package/hostapd/files/wpa_supplicant.sh (revision 19917) +++ package/hostapd/files/wpa_supplicant.sh (working copy) @@ -42,22 +42,17 @@ *psk*) key_mgmt='WPA-PSK' config_get_bool usepassphrase "$vif" passphrase 1 + if [ "$usepassphrase" = "1" ]; then + passphrase="psk=\"${key}\"" + else + passphrase="psk=${key}" + fi case "$enc" in *psk2*) proto='proto=RSN' - if [ "$usepassphrase" = "1" ]; then - passphrase="psk=\"${key}\"" - else - passphrase="psk=${key}" - fi ;; *psk*) proto='proto=WPA' - if [ "$usepassphrase" = "1" ]; then - passphrase="psk=\"${key}\"" - else - passphrase="psk=${key}" - fi ;; esac ;;
_______________________________________________ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel