static void dialog_sim_send_puk_ready (MMSim *sim, GAsyncResult *res, BroadbandDeviceInfo *info) { GError *error = NULL; if (!mm_sim_send_puk_finish (sim, res, &error)) { const gchar *msg; if (g_error_matches (error, MM_MOBILE_EQUIPMENT_ERROR, MM_MOBILE_EQUIPMENT_ERROR_INCORRECT_PASSWORD)) msg = _("Wrong PUK code; please contact your provider."); else { g_dbus_error_strip_remote_error (error); msg = error ? error->message : NULL; } applet_mobile_pin_dialog_stop_spinner (info->dialog, msg); g_warning ("Failed to send PUK to devid: '%s' simid: '%s' : %s", mm_modem_get_device_identifier (info->mm_modem), mm_sim_get_identifier (info->mm_sim), error->message); g_error_free (error); return; } /* Good */ unlock_dialog_destroy (info); }
static void send_puk_ready (MMSim *sim, GAsyncResult *result, gpointer nothing) { gboolean operation_result; GError *error = NULL; operation_result = mm_sim_send_puk_finish (sim, result, &error); send_puk_process_reply (operation_result, error); mmcli_async_operation_done (); }