diff options
author | Dan Williams <dan@ioncontrol.co> | 2025-02-24 22:06:59 -0600 |
---|---|---|
committer | Dan Williams <dan@bigw.org> | 2025-02-25 18:29:49 +0000 |
commit | 654c59edc0e4194f41339391a484fb97f092d480 (patch) | |
tree | f667d06b72fa98007f013834f212dc7f84688190 /cli | |
parent | 61f1000d824680b105f9bf25f832953503395515 (diff) |
cli: fix Cell Broadcast Message short-path conflict with Call
They both used 'o', but Call had it first. Change CBM to 'c'.
Fixes: https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/issues/962
Signed-off-by: Dan Williams <dan@ioncontrol.co>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/mmcli-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/mmcli-common.c b/cli/mmcli-common.c index 42778ece..46f02b5f 100644 --- a/cli/mmcli-common.c +++ b/cli/mmcli-common.c @@ -1893,7 +1893,7 @@ static GOptionEntry entries[] = { "Specify Call by path or index. Shows Call information if no action specified.", "[PATH|INDEX]" }, - { "cbm", 'o', 0, G_OPTION_ARG_STRING, &cbm_str, + { "cbm", 'c', 0, G_OPTION_ARG_STRING, &cbm_str, "Specify CBM by path or index. Shows Cbm information if no action specified.", "[PATH|INDEX]" }, |