hostapd: remove unused asprintf parameter
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 10 Apr 2015 08:31:26 +0000 (08:31 +0000)
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 10 Apr 2015 08:31:26 +0000 (08:31 +0000)
r45270 removed ieee80211n=%d from the format string but didn't remove
the parameter itself. Though this probably doesn't cause any harm, it's
quite confusing and unneeded.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45351 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/network/services/hostapd/patches/370-ap_sta_support.patch

index cf13a96..993caf4 100644 (file)
@@ -85,7 +85,7 @@
 +
 +      hw_mode = ieee80211_freq_to_chan(bss->freq, &channel);
 +      if (asprintf(&cmd, "UPDATE channel=%d sec_chan=%d hw_mode=%d",
-+                   channel, sec_chan, hw_mode, !!bss->ht_capab) < 0)
++                   channel, sec_chan, hw_mode) < 0)
 +              return -1;
 +
 +      ret = wpa_ctrl_request(wpa_s->hostapd, cmd, os_strlen(cmd), buf, &len, NULL);