* [PATCH] Fix +CGEV: parsing
@ 2009-11-10 6:31 Andrzej Zaborowski
2009-11-10 18:48 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: Andrzej Zaborowski @ 2009-11-10 6:31 UTC (permalink / raw)
To: ofono
[-- Attachment #1: Type: text/plain, Size: 813 bytes --]
---
drivers/atmodem/gprs.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/atmodem/gprs.c b/drivers/atmodem/gprs.c
index 242086c..7aaa51a 100644
--- a/drivers/atmodem/gprs.c
+++ b/drivers/atmodem/gprs.c
@@ -192,14 +192,16 @@ static void cgev_notify(GAtResult *result, gpointer user_data)
GAtResultIter iter;
const char *event;
+ g_at_result_iter_init(&iter, result);
+
if (!g_at_result_iter_next(&iter, "+CGEV:"))
return;
if (!g_at_result_iter_next_unquoted_string(&iter, &event))
return;
- if (g_str_has_prefix(event, "NW DETACH ") ||
- g_str_has_prefix(event, "ME DETACH ")) {
+ if (g_str_equal(event, "NW DETACH") ||
+ g_str_equal(event, "ME DETACH")) {
ofono_gprs_detached_notify(gprs);
return;
}
--
1.6.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-11-10 18:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-10 6:31 [PATCH] Fix +CGEV: parsing Andrzej Zaborowski
2009-11-10 18:48 ` Denis Kenzior
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.