aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli-bearer.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-01-08 16:15:39 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:47 +0100
commitad95567e88eadf452c7e48a1d97bac4b741c206b (patch)
tree84e0011dd150fe57880fd9677d8c6b56efed8878 /cli/mmcli-bearer.c
parent014a9eddab6c1787470caad58c0626a551fdc842 (diff)
cli: print Rm protocol in bearer info
Diffstat (limited to 'cli/mmcli-bearer.c')
-rw-r--r--cli/mmcli-bearer.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/cli/mmcli-bearer.c b/cli/mmcli-bearer.c
index 4015de39..96231c78 100644
--- a/cli/mmcli-bearer.c
+++ b/cli/mmcli-bearer.c
@@ -169,13 +169,16 @@ print_bearer_info (MMBearer *bearer)
" | IP type: '%s'\n"
" | user: '%s'\n"
" | password: '%s'\n"
- " | number: '%s'\n",
+ " | number: '%s'\n"
+ " | Rm protocol: '%s'\n",
VALIDATE_NONE (mm_bearer_properties_get_apn (properties)),
mm_bearer_properties_get_allow_roaming (properties) ? "allowed" : "forbidden",
VALIDATE_NONE (mm_bearer_properties_get_ip_type (properties)),
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_NONE (mm_bearer_properties_get_number (properties)),
+ VALIDATE_UNKNOWN (mmcli_get_cdma_rm_protocol_string (
+ mm_bearer_properties_get_rm_protocol (properties))));
g_object_unref (properties);
}