diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-11-23 19:55:59 -0600 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-11-23 19:55:59 -0600 |
commit | ca025eb90532acbbdddaa5694d3662cb8911306c (patch) | |
tree | 7d448035e4e3eb4916d31e998eb3b4e26b86b917 | |
parent | 4c64f304383f8ee18c4df53fb648e554141f8041 (diff) | |
download | ofono-ca025eb90532acbbdddaa5694d3662cb8911306c.tar.bz2 |
Fix: Make sure we don't gobble up unsolicited
-rw-r--r-- | drivers/calypsomodem/voicecall.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/calypsomodem/voicecall.c b/drivers/calypsomodem/voicecall.c index 6ff7de7a..976334e0 100644 --- a/drivers/calypsomodem/voicecall.c +++ b/drivers/calypsomodem/voicecall.c @@ -321,7 +321,8 @@ static void cpi_notify(GAtResult *result, gpointer user_data) /* Need to send this on the calypso hardware to avoid echo issues */ if (msgtype == 3 || msgtype == 4) - g_at_chat_send(vd->chat, "AT%N0187", NULL, NULL, NULL, NULL); + g_at_chat_send(vd->chat, "AT%N0187", none_prefix, + NULL, NULL, NULL); switch (msgtype) { case 0: |