diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-11-26 13:02:26 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-12-24 14:05:35 +0100 |
commit | 99ca2f5a1ca122895c8f584d31caf9fe6725375b (patch) | |
tree | 46822c39f98df2fc343771e038eb6bcc402b2f42 | |
parent | 41887b3fb7ff5000c8786985020453efa6b3e731 (diff) |
cli: new 'profile enabled' setting in 3GPP profile
-rw-r--r-- | cli/mmcli-output.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/mmcli-output.c b/cli/mmcli-output.c index db79d74e..1769ce20 100644 --- a/cli/mmcli-output.c +++ b/cli/mmcli-output.c @@ -933,6 +933,8 @@ build_profile_human (GPtrArray *array, MMBearerAccessTypePreference access_type_preference; g_ptr_array_add (array, g_strdup_printf ("profile-id: %u", mm_3gpp_profile_get_profile_id (profile))); + g_ptr_array_add (array, g_strdup_printf (" profile enabled: %s", + mm_3gpp_profile_get_enabled (profile) ? "yes" : "no")); if ((aux = mm_3gpp_profile_get_profile_name (profile)) != NULL) g_ptr_array_add (array, g_strdup_printf (" profile name: %s", aux)); |