diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-10 16:25:29 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-14 07:05:23 +0200 |
commit | 584fc77bb361f8485c255bd5ce2bb9c6320efc21 (patch) | |
tree | 2596c1c2cc8c9c06fa75a2ee4787ae3afd1764ed /cli/mmcli-modem-messaging.c | |
parent | 47b459603a2605f574d8ea1a7b51d501754d67ac (diff) |
cli: include the `--messaging' prefix in all Messaging-related actions
Just for consistency with other interfaces, which also provide interface
specific prefixes in their mmcli actions.
Diffstat (limited to 'cli/mmcli-modem-messaging.c')
-rw-r--r-- | cli/mmcli-modem-messaging.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/mmcli-modem-messaging.c b/cli/mmcli-modem-messaging.c index 3446f39f..cc6da608 100644 --- a/cli/mmcli-modem-messaging.c +++ b/cli/mmcli-modem-messaging.c @@ -53,15 +53,15 @@ static GOptionEntry entries[] = { "Show status of messaging support.", NULL }, - { "list-sms", 0, 0, G_OPTION_ARG_NONE, &list_flag, + { "messaging-list-sms", 0, 0, G_OPTION_ARG_NONE, &list_flag, "List SMS messages available in a given modem", NULL }, - { "create-sms", 0, 0, G_OPTION_ARG_STRING, &create_str, + { "messaging-create-sms", 0, 0, G_OPTION_ARG_STRING, &create_str, "Create a new SMS in a given modem", "[\"key=value,...\"]" }, - { "delete-sms", 0, 0, G_OPTION_ARG_STRING, &delete_str, + { "messaging-delete-sms", 0, 0, G_OPTION_ARG_STRING, &delete_str, "Delete a SMS from a given modem", "[PATH]" }, |