From 8453b2680ee6d21cb0906bf60bcfb3a2541b1ed6 Mon Sep 17 00:00:00 2001 From: Jeevaka Badrappan Date: Fri, 4 Feb 2011 15:42:28 +0200 Subject: ifxmodem: fix xtms read and test cmd prefix with the latest modem firmware, xctms prefix is returned as per the 3GPP format. --- drivers/ifxmodem/ctm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers') diff --git a/drivers/ifxmodem/ctm.c b/drivers/ifxmodem/ctm.c index 7b23a9b0..5080b167 100644 --- a/drivers/ifxmodem/ctm.c +++ b/drivers/ifxmodem/ctm.c @@ -41,7 +41,7 @@ #include "ifxmodem.h" static const char *none_prefix[] = { NULL }; -static const char *xctms_prefix[] = { "XCTMS:", NULL }; +static const char *xctms_prefix[] = { "+XCTMS:", NULL }; struct ctm_data { GAtChat *chat; @@ -65,7 +65,7 @@ static void xctms_query_cb(gboolean ok, GAtResult *result, gpointer user_data) g_at_result_iter_init(&iter, result); - if (g_at_result_iter_next(&iter, "XCTMS:") == FALSE) + if (g_at_result_iter_next(&iter, "+XCTMS:") == FALSE) goto error; if (g_at_result_iter_next_number(&iter, &value) == FALSE) -- cgit v1.2.3