diff options
Diffstat (limited to 'src/mm-bearer-mbim.c')
-rw-r--r-- | src/mm-bearer-mbim.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mm-bearer-mbim.c b/src/mm-bearer-mbim.c index e7747f32..ae4573ae 100644 --- a/src/mm-bearer-mbim.c +++ b/src/mm-bearer-mbim.c @@ -636,7 +636,7 @@ connect_set_ready (MbimDevice *device, activation_state != MBIM_ACTIVATION_STATE_ACTIVATING) { if (nw_error) { g_clear_error (&error); - error = mm_mobile_equipment_error_from_mbim_nw_error (nw_error); + error = mm_mobile_equipment_error_from_mbim_nw_error (nw_error, self); } else if (!error) { error = g_error_new (MM_MOBILE_EQUIPMENT_ERROR, MM_MOBILE_EQUIPMENT_ERROR_GPRS_UNKNOWN, @@ -843,7 +843,7 @@ packet_service_set_ready (MbimDevice *device, &inner_error)) { if (nw_error) { g_clear_error (&error); - error = mm_mobile_equipment_error_from_mbim_nw_error (nw_error); + error = mm_mobile_equipment_error_from_mbim_nw_error (nw_error, self); } else { g_autofree gchar *str = NULL; @@ -1402,7 +1402,7 @@ disconnect_set_ready (MbimDevice *device, if (g_error_matches (error, MBIM_STATUS_ERROR, MBIM_STATUS_ERROR_FAILURE) && parsed_result && nw_error != 0) { g_assert (!inner_error); g_error_free (error); - error = mm_mobile_equipment_error_from_mbim_nw_error (nw_error); + error = mm_mobile_equipment_error_from_mbim_nw_error (nw_error, self); /* error out with nw_error error */ goto out; } |