diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-11-26 15:37:19 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-12-24 14:05:35 +0100 |
commit | a896f88bf9260f4bd58861b581d4929553ed5d47 (patch) | |
tree | f99ae022f3a776f7f7c0200b52a569acc9430969 /cli/mmcli-output.c | |
parent | 3c0d94ac03abb02a4d01b09ed859258260452ec8 (diff) |
cli: don't use dashes in 3GPP profile human output
Diffstat (limited to 'cli/mmcli-output.c')
-rw-r--r-- | cli/mmcli-output.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/mmcli-output.c b/cli/mmcli-output.c index 87490a0c..d95a7157 100644 --- a/cli/mmcli-output.c +++ b/cli/mmcli-output.c @@ -950,7 +950,7 @@ build_profile_human (GPtrArray *array, g_autofree gchar *allowed_auth_str = NULL; allowed_auth_str = mm_bearer_allowed_auth_build_string_from_mask (allowed_auth); - g_ptr_array_add (array, g_strdup_printf (" allowed-auth: %s", allowed_auth_str)); + g_ptr_array_add (array, g_strdup_printf (" allowed auth: %s", allowed_auth_str)); } if ((aux = mm_3gpp_profile_get_user (profile)) != NULL) @@ -964,7 +964,7 @@ build_profile_human (GPtrArray *array, g_autofree gchar *ip_type_str = NULL; ip_type_str = mm_bearer_ip_family_build_string_from_mask (ip_type); - g_ptr_array_add (array, g_strdup_printf (" ip-type: %s", ip_type_str)); + g_ptr_array_add (array, g_strdup_printf (" ip type: %s", ip_type_str)); } apn_type = mm_3gpp_profile_get_apn_type (profile); @@ -972,7 +972,7 @@ build_profile_human (GPtrArray *array, g_autofree gchar *apn_type_str = NULL; apn_type_str = mm_bearer_apn_type_build_string_from_mask (apn_type); - g_ptr_array_add (array, g_strdup_printf (" apn-type: %s", apn_type_str)); + g_ptr_array_add (array, g_strdup_printf (" apn type: %s", apn_type_str)); } access_type_preference = mm_3gpp_profile_get_access_type_preference (profile); |