diff options
author | Dan Williams <dcbw@redhat.com> | 2016-03-15 10:33:30 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2016-03-15 10:34:28 -0500 |
commit | 0a9cbf65ea285ebe58b27e1bf40d078504351a80 (patch) | |
tree | a17ebac438d4c6fc21815ce29062d3a4aab96644 /src/mm-modem-helpers.c | |
parent | 8ac075d768cf36b6de19032a2ba208bf3e029cc5 (diff) |
modem-helpers: fix handling split PDP context ID reporting in CGDCONT=? response
Cinterion PHS8-US devices send split PDP context ID like "(1-17,101-112)" and
that caused the modem-helpers to choke.
Diffstat (limited to 'src/mm-modem-helpers.c')
-rw-r--r-- | src/mm-modem-helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-modem-helpers.c b/src/mm-modem-helpers.c index 74e55462..9f71b240 100644 --- a/src/mm-modem-helpers.c +++ b/src/mm-modem-helpers.c @@ -876,7 +876,7 @@ mm_3gpp_parse_cgdcont_test_response (const gchar *response, return NULL; } - r = g_regex_new ("\\+CGDCONT:\\s*\\(\\s*(\\d+)\\s*-?\\s*(\\d+)?\\s*\\)\\s*,\\s*\\(?\"(\\S+)\"", + r = g_regex_new ("\\+CGDCONT:\\s*\\(\\s*(\\d+)\\s*-?\\s*(\\d+)?[^\\)]*\\)\\s*,\\s*\\(?\"(\\S+)\"", G_REGEX_DOLLAR_ENDONLY | G_REGEX_RAW, 0, &inner_error); g_assert (r != NULL); |