aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2024-08-23 19:55:40 +0200
committerAleksander Morgado <aleksander@aleksander.es>2024-12-01 21:41:10 +0000
commite627062674a4196ee1f5d3fc99dd704da6d69f9b (patch)
tree3f2b4cd570774ce805a7eec899e07c069c15f415
parent2ca948f403157a69cfef69102e910a7519166381 (diff)
cli: Fix copy/paste error in comment
We check call caps not messaging caps Signed-off-by: Guido Günther <agx@sigxcpu.org>
-rw-r--r--cli/mmcli-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/mmcli-common.c b/cli/mmcli-common.c
index 11a7af9c..592b7a1e 100644
--- a/cli/mmcli-common.c
+++ b/cli/mmcli-common.c
@@ -1454,7 +1454,7 @@ look_for_call_in_modem (GTask *task)
modem = mm_object_get_modem_voice (ctx->current);
if (!modem) {
- /* Current modem has no messaging capabilities, try with next modem */
+ /* Current modem has no call capabilities, try with next modem */
look_for_call_in_modem (task);
return;
}