From 2004d26cdc96dbe99250808aef98d9ed821edceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20R=C3=B6jfors?= Date: Sun, 31 Mar 2019 22:18:46 +0200 Subject: [PATCH] ublox: Correct the USBCONF reply prefix According to the u-blox AT Commands Manual and my tests the response prefix of AT+UUSBCONF is "+UUSBCONF:", including a colon. The colon was missing in the code, causing next step to parse a number to fail, since a colon is not a number. --- plugins/ublox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ublox.c b/plugins/ublox.c index 355bdf9e..1ca0030a 100644 --- a/plugins/ublox.c +++ b/plugins/ublox.c @@ -164,7 +164,7 @@ static void query_usbconf_cb(gboolean ok, g_at_result_iter_init(&iter, result); retry: - if (!g_at_result_iter_next(&iter, "+UUSBCONF")) { + if (!g_at_result_iter_next(&iter, "+UUSBCONF:")) { ofono_error("Unable to query USB configuration"); goto error; }