diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-27 14:54:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-27 14:54:53 +0000 |
commit | 44218424f104454afc42da638be8709bd3bcdb9c (patch) | |
tree | dfb78d10b87f14e57a974af626f414f5204b7360 /package/network/services | |
parent | 7cc4cbb4d3bb57a18462338fa410740dd074da08 (diff) | |
download | upstream-44218424f104454afc42da638be8709bd3bcdb9c.tar.gz upstream-44218424f104454afc42da638be8709bd3bcdb9c.tar.bz2 upstream-44218424f104454afc42da638be8709bd3bcdb9c.zip |
hostapd: fix a compiler warning in ap+station patch
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45062
Diffstat (limited to 'package/network/services')
-rw-r--r-- | package/network/services/hostapd/patches/370-ap_sta_support.patch | 4 |
1 files changed, 2 insertions, 2 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 6b0fbe6e57..92a5fddad7 100644 --- a/package/network/services/hostapd/patches/370-ap_sta_support.patch +++ b/package/network/services/hostapd/patches/370-ap_sta_support.patch @@ -53,7 +53,7 @@ +{ + const char *cmd = "STOP_AP"; + char buf[256]; -+ int len = sizeof(buf); ++ size_t len = sizeof(buf); + + if (wpa_ctrl_request(wpa_s->hostapd, cmd, os_strlen(cmd), buf, &len, NULL) < 0) { + wpa_printf(MSG_ERROR, "\nFailed to stop hostapd AP interfaces\n"); @@ -66,7 +66,7 @@ +{ + char *cmd = NULL; + char buf[256]; -+ int len = sizeof(buf); ++ size_t len = sizeof(buf); + enum hostapd_hw_mode hw_mode; + u8 channel; + int sec_chan = 0; |