aboutsummaryrefslogtreecommitdiff
path: root/plugins/wavecom
diff options
context:
space:
mode:
authorBen Chan <benchan@chromium.org>2019-07-10 12:29:40 -0700
committerBen Chan <benchan@chromium.org>2019-07-10 14:48:22 -0700
commit8d8b3a722aaeac5ba0e3b735b63e39bb007eee23 (patch)
tree0267ac6801403d4dd5f42f15e12788ea3d136b36 /plugins/wavecom
parentea93aad8a414a3cdcf6864649e09e3bdf9ac4e5d (diff)
misc: use g_regex_match() for simplicity
This CL converts a few g_regex_match_full() expressions to their equivalent g_regex_match() in order to simplify the code, i.e. g_regex_match_full (regex, str, strlen (str), 0, 0, &match_info, NULL) is equivalent to: g_regex_match_full (regex, str, -1, 0, 0, &match_info, NULL) or simply: g_regex_match (regex, str, 0, &match_info)
Diffstat (limited to 'plugins/wavecom')
-rw-r--r--plugins/wavecom/mm-broadband-modem-wavecom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wavecom/mm-broadband-modem-wavecom.c b/plugins/wavecom/mm-broadband-modem-wavecom.c
index 51e50456..47980d86 100644
--- a/plugins/wavecom/mm-broadband-modem-wavecom.c
+++ b/plugins/wavecom/mm-broadband-modem-wavecom.c
@@ -261,7 +261,7 @@ wwsm_read_ready (MMBaseModem *self,
r = g_regex_new ("\\r\\n\\+WWSM: ([0-2])(,([0-2]))?.*$", 0, 0, NULL);
g_assert (r != NULL);
- if (g_regex_match_full (r, response, strlen (response), 0, 0, &match_info, NULL)) {
+ if (g_regex_match (r, response, 0, &match_info)) {
guint allowed = 0;
if (mm_get_uint_from_match_info (match_info, 1, &allowed)) {