From: Daichi Ueura Date: Mon, 13 Jul 2015 15:31:22 +0000 (+0900) Subject: Android: Handle STATUS-NO_EVENTS command in wpa_cli X-Git-Tag: hostap_2_5~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2665c26f91d0c19aa5745802635cc357abd79d67;p=thirdparty%2Fhostap.git Android: Handle STATUS-NO_EVENTS command in wpa_cli NO_EVENTS parameter was added to STATUS command by commit a6ab82d7b409cd95c4e64452c2a672d4ce4c3c99 ('Android: Add NO_EVENTS parameter to status command'). This patch adds handling of the new parameter in wpa_cli so that "status no_events" can be used to specify this parameter. Signed-off-by: Daichi Ueura --- diff --git a/wpa_supplicant/wpa_cli.c b/wpa_supplicant/wpa_cli.c index 042ba76bb..c7470cb53 100644 --- a/wpa_supplicant/wpa_cli.c +++ b/wpa_supplicant/wpa_cli.c @@ -502,6 +502,10 @@ static int wpa_cli_cmd_status(struct wpa_ctrl *ctrl, int argc, char *argv[]) return wpa_ctrl_command(ctrl, "STATUS-WPS"); if (argc > 0 && os_strcmp(argv[0], "driver") == 0) return wpa_ctrl_command(ctrl, "STATUS-DRIVER"); +#ifdef ANDROID + if (argc > 0 && os_strcmp(argv[0], "no_events") == 0) + return wpa_ctrl_command(ctrl, "STATUS-NO_EVENTS"); +#endif /* ANDROID */ return wpa_ctrl_command(ctrl, "STATUS"); }