diff options
Diffstat (limited to 'plugins/zte.c')
-rw-r--r-- | plugins/zte.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/zte.c b/plugins/zte.c index 822098d4..6a4b3746 100644 --- a/plugins/zte.c +++ b/plugins/zte.c @@ -233,11 +233,10 @@ static void set_online_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct cb_data *cbd = user_data; ofono_modem_online_cb_t cb = cbd->cb; + struct ofono_error error; - if (ok) - CALLBACK_WITH_SUCCESS(cb, cbd->data); - else - CALLBACK_WITH_FAILURE(cb, cbd->data); + decode_at_error(&error, g_at_result_final_response(result)); + cb(&error, cbd->data); } static void zte_set_online(struct ofono_modem *modem, ofono_bool_t online, |