mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-21 09:42:09 +00:00
hostapd: fix a compiler warning in ap+station patch
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45062
This commit is contained in:
parent
7cc4cbb4d3
commit
44218424f1
@ -53,7 +53,7 @@
|
|||||||
+{
|
+{
|
||||||
+ const char *cmd = "STOP_AP";
|
+ const char *cmd = "STOP_AP";
|
||||||
+ char buf[256];
|
+ 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) {
|
+ 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");
|
+ wpa_printf(MSG_ERROR, "\nFailed to stop hostapd AP interfaces\n");
|
||||||
@ -66,7 +66,7 @@
|
|||||||
+{
|
+{
|
||||||
+ char *cmd = NULL;
|
+ char *cmd = NULL;
|
||||||
+ char buf[256];
|
+ char buf[256];
|
||||||
+ int len = sizeof(buf);
|
+ size_t len = sizeof(buf);
|
||||||
+ enum hostapd_hw_mode hw_mode;
|
+ enum hostapd_hw_mode hw_mode;
|
||||||
+ u8 channel;
|
+ u8 channel;
|
||||||
+ int sec_chan = 0;
|
+ int sec_chan = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user