diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-10-13 12:39:24 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-10-13 13:14:10 +0200 |
commit | 05ddf7c2930fc7eee2ba25e71ec3b2f399d56646 (patch) | |
tree | e4224c13852003b5c7be0332809d41384b4a3354 | |
parent | f45bc200a9f09a821816ffb131c1edfadf0895fd (diff) |
mmcli,sar: rename actions to just --sar-enable and --sar-disable
-rw-r--r-- | cli/mmcli-modem-sar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/mmcli-modem-sar.c b/cli/mmcli-modem-sar.c index 4f78f21b..3c97ca68 100644 --- a/cli/mmcli-modem-sar.c +++ b/cli/mmcli-modem-sar.c @@ -55,11 +55,11 @@ static GOptionEntry entries[] = { "Current status of the SAR", NULL }, - { "sar-set-enable", 0, 0, G_OPTION_ARG_NONE, &sar_enable_flag, + { "sar-enable", 0, 0, G_OPTION_ARG_NONE, &sar_enable_flag, "Enable dynamic SAR", NULL }, - { "sar-set-disable", 0, 0, G_OPTION_ARG_NONE, &sar_disable_flag, + { "sar-disable", 0, 0, G_OPTION_ARG_NONE, &sar_disable_flag, "Disable dynamic SAR", NULL }, |