From 4fe0c793d3a230c505b480874dd773a2b45ef9f0 Mon Sep 17 00:00:00 2001 From: Chaitanya Tata Date: Fri, 26 Jan 2024 01:53:57 +0530 Subject: [PATCH] [nrf noup] zephyr: Reduce the global control interface buffer This can be same as non-global control interface, for interface command the output is limited to 1024. Signed-off-by: Chaitanya Tata --- wpa_supplicant/ctrl_iface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 7df74bd45..f168541e4 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -13003,7 +13003,7 @@ static int wpas_global_ctrl_iface_fst_detach(struct wpa_global *global, char * wpa_supplicant_global_ctrl_iface_process(struct wpa_global *global, char *buf, size_t *resp_len) { - static char reply[2048]; + static char reply[1024]; const int reply_size = sizeof(reply); int reply_len; int level = MSG_DEBUG;