Browse Source

hostapd: change the wildcard for the hostapd control socket directory

prepare for using /var/run/hostapd instead of /var/run/hostapd-phy*

Signed-off-by: Felix Fietkau <[email protected]>

SVN-Revision: 38986
Felix Fietkau 12 years ago
parent
commit
a26242cb63
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/network/services/hostapd/files/wps-hotplug.sh

+ 1 - 1
package/network/services/hostapd/files/wps-hotplug.sh

@@ -1,7 +1,7 @@
 #!/bin/sh
 
 if [ "$ACTION" = "pressed" -a "$BUTTON" = "wps" ]; then
-	for dir in /var/run/hostapd-*; do
+	for dir in /var/run/hostapd*; do
 		[ -d "$dir" ] || continue
 		hostapd_cli -p "$dir" wps_pbc
 	done