From: Denis Kenzior Date: Fri, 20 Feb 2015 16:28:24 +0000 (-0600) Subject: hfpmodem: Make sure to set the prefix properly X-Git-Tag: upstream/1.17~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d592d7d46ee1f718c2c3db41546fe74806573db;p=platform%2Fupstream%2Fofono.git hfpmodem: Make sure to set the prefix properly ofonod[1239]: > AT+COPS=3,0\r ofonod[1239]: < \r\n+BCS:2\r\n ofonod[1239]: < \r\nOK\r\n --- diff --git a/drivers/hfpmodem/network-registration.c b/drivers/hfpmodem/network-registration.c index 272d5b44..22ce664a 100644 --- a/drivers/hfpmodem/network-registration.c +++ b/drivers/hfpmodem/network-registration.c @@ -46,6 +46,7 @@ static const char *cops_prefix[] = { "+COPS:", NULL }; static const char *cind_prefix[] = { "+CIND:", NULL }; +static const char *none_prefix[] = { NULL }; struct netreg_data { GAtChat *chat; @@ -263,7 +264,7 @@ static void hfp_current_operator(struct ofono_netreg *netreg, cbd->user = netreg; - ok = g_at_chat_send(nd->chat, "AT+COPS=3,0", NULL, + ok = g_at_chat_send(nd->chat, "AT+COPS=3,0", none_prefix, NULL, cbd, NULL); if (ok)