diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2011-08-20 09:19:19 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:25 +0100 |
commit | 387db2b2595c1c0d4432248c59c1b9df1c11c89d (patch) | |
tree | 5fc4b261db4cec1a292043f8d6a97a0e417fced0 | |
parent | d8c2a6392728bba1e78389b23b56f848045f9236 (diff) |
cli: use capital letters for manager options
-rw-r--r-- | cli/mmcli-manager.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/mmcli-manager.c b/cli/mmcli-manager.c index 0695e5a5..adb12d08 100644 --- a/cli/mmcli-manager.c +++ b/cli/mmcli-manager.c @@ -45,19 +45,19 @@ static gboolean scan_modems_flag; static gchar *set_logging_str; static GOptionEntry entries[] = { - { "set-logging", 'L', 0, G_OPTION_ARG_STRING, &set_logging_str, + { "set-logging", 'G', 0, G_OPTION_ARG_STRING, &set_logging_str, "Set logging level in the ModemManager daemon", "[ERR,WARN,INFO,DEBUG]", }, - { "list-modems", 'l', 0, G_OPTION_ARG_NONE, &list_modems_flag, + { "list-modems", 'L', 0, G_OPTION_ARG_NONE, &list_modems_flag, "List available modems", NULL }, - { "monitor-modems", 'm', 0, G_OPTION_ARG_NONE, &monitor_modems_flag, + { "monitor-modems", 'M', 0, G_OPTION_ARG_NONE, &monitor_modems_flag, "List available modems and monitor additions and removals", NULL }, - { "scan-modems", 's', 0, G_OPTION_ARG_NONE, &scan_modems_flag, + { "scan-modems", 'S', 0, G_OPTION_ARG_NONE, &scan_modems_flag, "Request to re-scan looking for modems", NULL }, |