From 45d3cda0967e0518e80cf89cfce41da4df9e8994 Mon Sep 17 00:00:00 2001 From: Dmitry Shmidt Date: Thu, 12 Sep 2013 12:39:30 -0700 Subject: [PATCH] Android: P2P: Remember country locale Bug: 10641114 Change-Id: Iab32a76b277cc8195f47a02fb8e6936ff2529aaa Signed-off-by: Dmitry Shmidt --- wpa_supplicant/ctrl_iface.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 8736b0761..af57afaaa 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -5150,8 +5150,19 @@ static int wpa_supplicant_driver_cmd(struct wpa_supplicant *wpa_s, char *cmd, int ret; ret = wpa_drv_driver_cmd(wpa_s, cmd, buf, buflen); - if (ret == 0) + if (ret == 0) { + if (os_strncasecmp(cmd, "COUNTRY", 7) == 0) { + struct p2p_data *p2p = wpa_s->global->p2p; + if (p2p) { + char country[3]; + country[0] = cmd[8]; + country[1] = cmd[9]; + country[2] = 0x04; + p2p_set_country(p2p, country); + } + } ret = sprintf(buf, "%s\n", "OK"); + } return ret; } #endif -- 2.47.2