diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-01-30 02:52:14 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-01-30 02:52:14 +0000 |
commit | 408690fb74c0eb3a8fa8956696ededcbeebea89f (patch) | |
tree | a7359988a5cde11d9228b9c0a9e9ed2eb6fb925a /package/hostapd/files | |
parent | ceae09d67fcdb7f1f1c136933bc140f5685a7072 (diff) | |
download | upstream-408690fb74c0eb3a8fa8956696ededcbeebea89f.tar.gz upstream-408690fb74c0eb3a8fa8956696ededcbeebea89f.tar.bz2 upstream-408690fb74c0eb3a8fa8956696ededcbeebea89f.zip |
fix hostapd startup for no-crypto configurations
SVN-Revision: 14276
Diffstat (limited to 'package/hostapd/files')
-rw-r--r-- | package/hostapd/files/hostapd.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index 1ce62fd767..a2f2d6fd1d 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -67,6 +67,7 @@ hostapd_setup_vif() { ;; *) wpa=0 + crypto= ;; esac config_get ifname "$vif" ifname @@ -94,7 +95,7 @@ ${bridge:+bridge=$bridge} ssid=$ssid debug=0 wpa=$wpa -wpa_pairwise=$crypto +${crypto:+wpa_pairwise=$crypto} $hostapd_cfg EOF hostapd -P /var/run/wifi-$ifname.pid -B /var/run/hostapd-$ifname.conf |