aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli-sim.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-11-20 21:40:03 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-12-11 12:53:37 +0100
commitf8719e6308404e6c2f077c59a1dc9b13dc37819e (patch)
treec3d46d6446b66cc0ce426ff7cd870033e6b3b9b8 /cli/mmcli-sim.c
parent0eda648bb9d0fef19bf882f36f853d6aa2699d12 (diff)
cli,sim: new 'SimType', 'Removability' and 'EsimStatus' properties
Diffstat (limited to 'cli/mmcli-sim.c')
-rw-r--r--cli/mmcli-sim.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/mmcli-sim.c b/cli/mmcli-sim.c
index 3056783b..3a384ed1 100644
--- a/cli/mmcli-sim.c
+++ b/cli/mmcli-sim.c
@@ -177,6 +177,9 @@ print_sim_info (MMSim *sim)
preferred_nets_list = mm_sim_get_preferred_networks (sim);
mmcli_output_preferred_networks (preferred_nets_list);
g_list_free_full (preferred_nets_list, (GDestroyNotify) mm_sim_preferred_network_free);
+ mmcli_output_string (MMC_F_SIM_PROPERTIES_SIM_TYPE, mm_sim_type_get_string (mm_sim_get_sim_type (sim)));
+ mmcli_output_string (MMC_F_SIM_PROPERTIES_ESIM_STATUS, mm_sim_esim_status_get_string (mm_sim_get_esim_status (sim)));
+ mmcli_output_string (MMC_F_SIM_PROPERTIES_REMOVABILITY, mm_sim_removability_get_string (mm_sim_get_removability (sim)));
mmcli_output_dump ();
}