1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-25 15:06:47 +02:00

hostapd.sh: Fix typo. The PSK is expected in the "psk" variable, but we put it into the "key" variable.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10478 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mb 2008-02-17 13:30:24 +00:00
parent 8b99a957f2
commit 2b63bfb497

View File

@ -38,7 +38,7 @@ hostapd_setup_vif() {
# use crypto/auth settings for building the hostapd config
case "$enc" in
*psk*|*PSK*)
config_get psk "$vif" key
config_get psk "$vif" psk
append hostapd_cfg "wpa_passphrase=$psk" "$N"
;;
*wpa*|*WPA*)