diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-01-18 13:45:40 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:53 +0100 |
commit | c753649361d0339f8b491aca2ef53cdc11727075 (patch) | |
tree | a0ec5465e7c38ad29cabbde3f204d0b7add8f8d5 /cli/mmcli-bearer.c | |
parent | a3532e7730b9f776c5590f2680f444306e411bdd (diff) |
cli: use new enums/flags string getters/builders
Diffstat (limited to 'cli/mmcli-bearer.c')
-rw-r--r-- | cli/mmcli-bearer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/mmcli-bearer.c b/cli/mmcli-bearer.c index 96231c78..c83396fc 100644 --- a/cli/mmcli-bearer.c +++ b/cli/mmcli-bearer.c @@ -177,7 +177,7 @@ print_bearer_info (MMBearer *bearer) VALIDATE_NONE (mm_bearer_properties_get_user (properties)), VALIDATE_NONE (mm_bearer_properties_get_password (properties)), VALIDATE_NONE (mm_bearer_properties_get_number (properties)), - VALIDATE_UNKNOWN (mmcli_get_cdma_rm_protocol_string ( + VALIDATE_UNKNOWN (mm_modem_cdma_rm_protocol_get_string ( mm_bearer_properties_get_rm_protocol (properties)))); g_object_unref (properties); } @@ -186,7 +186,7 @@ print_bearer_info (MMBearer *bearer) g_print (" -------------------------\n" " IPv4 configuration | method: '%s'\n", (ipv4_config ? - mmcli_get_bearer_ip_method_string (mm_bearer_ip_config_get_method (ipv4_config)) : + mm_bearer_ip_method_get_string (mm_bearer_ip_config_get_method (ipv4_config)) : "none")); if (ipv4_config && mm_bearer_ip_config_get_method (ipv4_config) == MM_BEARER_IP_METHOD_STATIC) { @@ -212,7 +212,7 @@ print_bearer_info (MMBearer *bearer) g_print (" -------------------------\n" " IPv6 configuration | method: '%s'\n", (ipv6_config ? - mmcli_get_bearer_ip_method_string (mm_bearer_ip_config_get_method (ipv6_config)) : + mm_bearer_ip_method_get_string (mm_bearer_ip_config_get_method (ipv6_config)) : "none")); if (ipv6_config && mm_bearer_ip_config_get_method (ipv6_config) == MM_BEARER_IP_METHOD_STATIC) { |