From 2b63bfb4972e56e7b4b0930c34d9f0e7b3891a1b Mon Sep 17 00:00:00 2001
From: mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Sun, 17 Feb 2008 13:30:24 +0000
Subject: [PATCH] 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
---
 package/hostapd/files/hostapd.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh
index 529462e6c..570f2ed07 100644
--- a/package/hostapd/files/hostapd.sh
+++ b/package/hostapd/files/hostapd.sh
@@ -11,7 +11,7 @@ hostapd_setup_vif() {
 
 	# TODO: move this parsing function somewhere generic, so that
 	# later it can be reused by drivers that don't use hostapd
-	
+
 	# crypto defaults: WPA2 vs WPA1
 	case "$enc" in
 		wpa2*|WPA2*|*PSK2*|*psk2*)
@@ -34,11 +34,11 @@ hostapd_setup_vif() {
 		*tkip|*TKIP) crypto="TKIP";;
 		*aes|*AES|*ccmp|*CCMP) crypto="CCMP";;
 	esac
-	
+
 	# 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*)
-- 
2.20.1