aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorTorgny Johansson <torgny.johansson@ericsson.com>2009-09-19 11:37:16 -0700
committerDan Williams <dcbw@redhat.com>2009-09-19 11:37:16 -0700
commit1f7bb908ebc40d42f5e83d6cf5671e168577b87e (patch)
tree47d6a49d87cbb06589bf496a8538602a6df60ef0 /plugins
parent64b7be7460c3a9dbb3c9981de5754b330a8d2cdd (diff)
mbm: fix up +PACSP0 unsolicited response matching
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mm-modem-mbm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mm-modem-mbm.c b/plugins/mm-modem-mbm.c
index 3267402c..c9a69e5e 100644
--- a/plugins/mm-modem-mbm.c
+++ b/plugins/mm-modem-mbm.c
@@ -718,7 +718,7 @@ grab_port (MMModem *modem,
mm_serial_port_add_unsolicited_msg_handler (MM_SERIAL_PORT (port), regex, mbm_e2nap_received, modem, NULL);
g_regex_unref (regex);
- regex = g_regex_new ("\\r\\n\\+PACSP0\\r\\n\\r\\n", G_REGEX_RAW | G_REGEX_OPTIMIZE, 0, NULL);
+ regex = g_regex_new ("\\r\\n\\+PACSP0\\r\\n", G_REGEX_RAW | G_REGEX_OPTIMIZE, 0, NULL);
mm_serial_port_add_unsolicited_msg_handler (MM_SERIAL_PORT (port), regex, mbm_pacsp0_received, modem, NULL);
g_regex_unref (regex);