diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-01 11:19:47 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-04-01 11:24:42 +0200 |
commit | 851a708442b53ed2a560920f2bc097b62face54c (patch) | |
tree | cffb8d5cf4e94615ec4e736471eaa8258338211c /src/mm-broadband-bearer.c | |
parent | 2c27a7aadc79f3ded2e0ab13cc757266639f01e1 (diff) |
modem-helpers: ip family normalization doesn't need log_object
Diffstat (limited to 'src/mm-broadband-bearer.c')
-rw-r--r-- | src/mm-broadband-bearer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-broadband-bearer.c b/src/mm-broadband-bearer.c index 925439f2..3e9eff7d 100644 --- a/src/mm-broadband-bearer.c +++ b/src/mm-broadband-bearer.c @@ -132,7 +132,7 @@ detailed_connect_context_new (MMBroadbandBearer *self, ctx->secondary = (secondary ? g_object_ref (secondary) : NULL); ctx->ip_family = mm_bearer_properties_get_ip_type (mm_base_bearer_peek_config (MM_BASE_BEARER (self))); - mm_3gpp_normalize_ip_family (&ctx->ip_family, self); + mm_3gpp_normalize_ip_family (&ctx->ip_family); return ctx; } @@ -908,7 +908,7 @@ cid_selection_3gpp (MMBroadbandBearer *self, ctx->cancellable = g_object_ref (cancellable); ctx->ip_family = mm_bearer_properties_get_ip_type (mm_base_bearer_peek_config (MM_BASE_BEARER (self))); - mm_3gpp_normalize_ip_family (&ctx->ip_family, self); + mm_3gpp_normalize_ip_family (&ctx->ip_family); g_task_set_task_data (task, ctx, (GDestroyNotify) cid_selection_3gpp_context_free); |