summaryrefslogtreecommitdiffstats
path: root/plugins/gobi.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2011-01-29 17:43:13 +0100
committerMarcel Holtmann <marcel@holtmann.org>2011-01-29 18:39:37 +0100
commit863ce7d93ab7136ff5dbe28250fe1067ba947b30 (patch)
tree7a3a930490e77d3bb2f63c3dac680db803ad197f /plugins/gobi.c
parent9e3b02b35d8c207e21d434b32338d4d0170ff9db (diff)
downloadofono-863ce7d93ab7136ff5dbe28250fe1067ba947b30.tar.bz2
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.
Diffstat (limited to 'plugins/gobi.c')
-rw-r--r--plugins/gobi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gobi.c b/plugins/gobi.c
index 1a5830d3..5846485c 100644
--- a/plugins/gobi.c
+++ b/plugins/gobi.c
@@ -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);