aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli-modem.c
diff options
context:
space:
mode:
Diffstat (limited to 'cli/mmcli-modem.c')
-rw-r--r--cli/mmcli-modem.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/cli/mmcli-modem.c b/cli/mmcli-modem.c
index 51c942db..ce507af0 100644
--- a/cli/mmcli-modem.c
+++ b/cli/mmcli-modem.c
@@ -43,7 +43,7 @@ static Context *ctx;
/* Options */
static gchar *modem_str;
-static gboolean info_flag;
+static gboolean info_flag; /* set when no action found */
static gboolean monitor_state_flag;
static gboolean enable_flag;
static gboolean disable_flag;
@@ -55,11 +55,7 @@ static gchar *delete_bearer_str;
static GOptionEntry entries[] = {
{ "modem", 'm', 0, G_OPTION_ARG_STRING, &modem_str,
- "Specify modem by path or index",
- NULL
- },
- { "info", 'i', 0, G_OPTION_ARG_NONE, &info_flag,
- "Get information of a given modem",
+ "Specify modem by path or index. Shows modem information if no action specified.",
NULL
},
{ "monitor-state", 'w', 0, G_OPTION_ARG_NONE, &monitor_state_flag,
@@ -118,8 +114,7 @@ mmcli_modem_options_enabled (void)
{
guint n_actions;
- n_actions = (info_flag +
- monitor_state_flag +
+ n_actions = (monitor_state_flag +
enable_flag +
disable_flag +
reset_flag +
@@ -128,6 +123,12 @@ mmcli_modem_options_enabled (void)
!!delete_bearer_str +
!!factory_reset_str);
+ if (n_actions == 0 && modem_str) {
+ /* default to info */
+ info_flag = TRUE;
+ n_actions++;
+ }
+
if (n_actions > 1) {
g_printerr ("error: too many modem actions requested\n");
exit (EXIT_FAILURE);