aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli-modem.c
diff options
context:
space:
mode:
Diffstat (limited to 'cli/mmcli-modem.c')
-rw-r--r--cli/mmcli-modem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/mmcli-modem.c b/cli/mmcli-modem.c
index 2c17f5b4..4d806ef5 100644
--- a/cli/mmcli-modem.c
+++ b/cli/mmcli-modem.c
@@ -1131,7 +1131,7 @@ get_modem_ready (GObject *source,
/* Request to reset the modem? */
if (reset_flag) {
- g_debug ("Asynchronously reseting modem...");
+ g_debug ("Asynchronously resetting modem...");
mm_modem_reset (ctx->modem,
ctx->cancellable,
(GAsyncReadyCallback)reset_ready,
@@ -1141,7 +1141,7 @@ get_modem_ready (GObject *source,
/* Request to reset the modem to factory state? */
if (factory_reset_str) {
- g_debug ("Asynchronously factory-reseting modem...");
+ g_debug ("Asynchronously factory-resetting modem...");
mm_modem_factory_reset (ctx->modem,
factory_reset_str,
ctx->cancellable,
@@ -1384,7 +1384,7 @@ mmcli_modem_run_synchronous (GDBusConnection *connection)
if (reset_flag) {
gboolean result;
- g_debug ("Synchronously reseting modem...");
+ g_debug ("Synchronously resetting modem...");
result = mm_modem_reset_sync (ctx->modem, NULL, &error);
reset_process_reply (result, error);
return;
@@ -1394,7 +1394,7 @@ mmcli_modem_run_synchronous (GDBusConnection *connection)
if (factory_reset_str) {
gboolean result;
- g_debug ("Synchronously factory-reseting modem...");
+ g_debug ("Synchronously factory-resetting modem...");
result = mm_modem_factory_reset_sync (ctx->modem,
factory_reset_str,
NULL,