diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-08 12:57:19 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:01 +0100 |
commit | d80d06cd6e2b8a441dac610ba396fe0b05c8b63e (patch) | |
tree | 7c7dac88aff0b285cce800be8a45fd6219ec5b15 | |
parent | e82db676466319ce03998b678c3c89d1385187ee (diff) |
cli: fix help, bearers and SIMs can be specified also by index
-rw-r--r-- | cli/mmcli-common.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/mmcli-common.c b/cli/mmcli-common.c index 325b6d9e..38c1ba4d 100644 --- a/cli/mmcli-common.c +++ b/cli/mmcli-common.c @@ -782,12 +782,12 @@ static GOptionEntry entries[] = { "[PATH|INDEX]" }, { "bearer", 'b', 0, G_OPTION_ARG_STRING, &bearer_str, - "Specify bearer by path. Shows bearer information if no action specified.", - "[PATH]" + "Specify bearer by path or index. Shows bearer information if no action specified.", + "[PATH|INDEX]" }, { "sim", 's', 0, G_OPTION_ARG_STRING, &sim_str, - "Specify SIM by path. Shows SIM information if no action specified.", - "[PATH]" + "Specify SIM by path or index. Shows SIM information if no action specified.", + "[PATH|INDEX]" }, { NULL } }; |