gobi: Use permissive AT syntax parser

Trying to use the GSM V1 parser will break sending SMS. So just accept
that Gobi is another device where the strict syntax parser won't work.
This commit is contained in:
Marcel Holtmann 2011-01-29 17:43:13 +01:00
parent 9e3b02b35d
commit 863ce7d93a
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ static GAtChat *open_device(struct ofono_modem *modem,
if (channel == NULL)
return NULL;
syntax = g_at_syntax_new_gsmv1();
syntax = g_at_syntax_new_gsm_permissive();
chat = g_at_chat_new(channel, syntax);
g_at_syntax_unref(syntax);
g_io_channel_unref(channel);