diff options
author | John Crispin <john@openwrt.org> | 2015-04-10 08:31:26 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-04-10 08:31:26 +0000 |
commit | 2b95d21fdb87b5701af3801005c8fa17479e684c (patch) | |
tree | 038380b11241b5afd81999193cca067ceda73cb3 | |
parent | 7872f4e1dc054ce20d7f75d6a11fb7359ad24df6 (diff) | |
download | upstream-2b95d21fdb87b5701af3801005c8fa17479e684c.tar.gz upstream-2b95d21fdb87b5701af3801005c8fa17479e684c.tar.bz2 upstream-2b95d21fdb87b5701af3801005c8fa17479e684c.zip |
hostapd: remove unused asprintf parameter
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>
SVN-Revision: 45351
-rw-r--r-- | package/network/services/hostapd/patches/370-ap_sta_support.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/patches/370-ap_sta_support.patch b/package/network/services/hostapd/patches/370-ap_sta_support.patch index cf13a96f0c..993caf4149 100644 --- a/package/network/services/hostapd/patches/370-ap_sta_support.patch +++ b/package/network/services/hostapd/patches/370-ap_sta_support.patch @@ -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); |