diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-04 14:37:42 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-08 16:35:09 +0200 |
commit | a2b57474dc60759416bc2a5a8808806fd3317c01 (patch) | |
tree | bae0ce8d82d975f7b4237ed1c46b6b9515206735 /src/mm-iface-modem-3gpp.c | |
parent | bac9ed21cbe806280ff999facbd02935ccdefaba (diff) |
error-helpers: port to use object logging
Diffstat (limited to 'src/mm-iface-modem-3gpp.c')
-rw-r--r-- | src/mm-iface-modem-3gpp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-iface-modem-3gpp.c b/src/mm-iface-modem-3gpp.c index fc8cdc79..cbd989f6 100644 --- a/src/mm-iface-modem-3gpp.c +++ b/src/mm-iface-modem-3gpp.c @@ -311,7 +311,7 @@ run_registration_checks_ready (MMIfaceModem3gpp *self, mm_obj_dbg (self, "registration denied"); register_in_network_context_complete_failed ( task, - mm_mobile_equipment_error_for_code (MM_MOBILE_EQUIPMENT_ERROR_NETWORK_NOT_ALLOWED)); + mm_mobile_equipment_error_for_code (MM_MOBILE_EQUIPMENT_ERROR_NETWORK_NOT_ALLOWED, self)); return; } @@ -333,7 +333,7 @@ run_registration_checks_ready (MMIfaceModem3gpp *self, mm_obj_dbg (self, "3GPP registration check timed out"); register_in_network_context_complete_failed ( task, - mm_mobile_equipment_error_for_code (MM_MOBILE_EQUIPMENT_ERROR_NETWORK_TIMEOUT)); + mm_mobile_equipment_error_for_code (MM_MOBILE_EQUIPMENT_ERROR_NETWORK_TIMEOUT, self)); return; } |