diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-04 10:58:57 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-08 16:35:09 +0200 |
commit | 3747f9e669204f0e609e36d629c708dafa1bb990 (patch) | |
tree | 32c76124e5056c17cda170e45b33dacfbb3d9d7b /src/mm-modem-helpers.c | |
parent | 740827bde1d03c5f8b187f70be8ffb6ae3ca1785 (diff) |
modem-helpers: remove logging from cgdcont response parser
Diffstat (limited to 'src/mm-modem-helpers.c')
-rw-r--r-- | src/mm-modem-helpers.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mm-modem-helpers.c b/src/mm-modem-helpers.c index 1bc9db52..d8415caa 100644 --- a/src/mm-modem-helpers.c +++ b/src/mm-modem-helpers.c @@ -1803,9 +1803,7 @@ mm_3gpp_parse_cgdcont_read_response (const gchar *reply, str = mm_get_string_unquoted_from_match_info (match_info, 2); ip_family = mm_3gpp_get_ip_family_from_pdp_type (str); - if (ip_family == MM_BEARER_IP_FAMILY_NONE) - mm_dbg ("Ignoring PDP context type: '%s'", str); - else { + if (ip_family != MM_BEARER_IP_FAMILY_NONE) { MM3gppPdpContext *pdp; pdp = g_slice_new0 (MM3gppPdpContext); |