diff options
author | Travis Kemen <thepeople@openwrt.org> | 2008-02-18 23:40:31 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2008-02-18 23:40:31 +0000 |
commit | fe7e52b4fa4c5f5850213d620e2f59d83a0767c3 (patch) | |
tree | f46b98e3bdabfaac6a4cebf1decb6f7403397216 /package/hostapd | |
parent | 670b7ab883d936ea52f69f9139a673f64e54a74e (diff) | |
download | upstream-fe7e52b4fa4c5f5850213d620e2f59d83a0767c3.tar.gz upstream-fe7e52b4fa4c5f5850213d620e2f59d83a0767c3.tar.bz2 upstream-fe7e52b4fa4c5f5850213d620e2f59d83a0767c3.zip |
change psk back to key
SVN-Revision: 10488
Diffstat (limited to 'package/hostapd')
-rw-r--r-- | package/hostapd/files/hostapd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index 570f2ed07a..2f06cc2d10 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -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" psk + config_get psk "$vif" key append hostapd_cfg "wpa_passphrase=$psk" "$N" ;; *wpa*|*WPA*) |