Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
[nrf noup] zephyr: Reduce the global control interface buffer
Browse files Browse the repository at this point in the history
This can be same as non-global control interface, for interface command
the output is limited to 1024.

Signed-off-by: Chaitanya Tata <[email protected]>
  • Loading branch information
krish2718 committed Feb 1, 2024
1 parent 93fd464 commit ca30af1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wpa_supplicant/ctrl_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -13003,8 +13003,8 @@ 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];
const int reply_size = 2048;
static char reply[1024];
const int reply_size = 1024;
int reply_len;
int level = MSG_DEBUG;
char *reply_redir;
Expand Down

0 comments on commit ca30af1

Please sign in to comment.