diff options
Diffstat (limited to 'src/mm-base-modem-at.c')
-rw-r--r-- | src/mm-base-modem-at.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/mm-base-modem-at.c b/src/mm-base-modem-at.c index 04a350f9..657d1df2 100644 --- a/src/mm-base-modem-at.c +++ b/src/mm-base-modem-at.c @@ -397,6 +397,23 @@ mm_base_modem_response_processor_no_result_continue (MMBaseModem *self, return FALSE; } +gboolean +mm_base_modem_response_processor_continue_on_error (MMBaseModem *self, + gpointer none, + const gchar *command, + const gchar *response, + gboolean last_command, + const GError *error, + GVariant **result, + GError **result_error) +{ + if (error) + return FALSE; + + *result = NULL; + return TRUE; +} + /*****************************************************************************/ /* Single AT command handling */ |