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 | 448e90485ff651be6c3b4991685f1382b7dd0f5e (patch) | |
tree | e4347ff9c0aa1fde3ef60b99fdb61f945250aab2 /package/hostapd/files | |
parent | d3bbaf965b6885dbd7c09910e911f38b436392e4 (diff) | |
download | upstream-448e90485ff651be6c3b4991685f1382b7dd0f5e.tar.gz upstream-448e90485ff651be6c3b4991685f1382b7dd0f5e.tar.bz2 upstream-448e90485ff651be6c3b4991685f1382b7dd0f5e.zip |
change psk back to key
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10488 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/files')
-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*) |