summaryrefslogtreecommitdiff
path: root/cli/mmcli-modem-simple.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-03-01 12:31:17 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-16 14:53:19 +0100
commit1385eb394f977ee3a7014bd0025fa65cd7e4a25a (patch)
tree3d3bd1e67f3b5a51f9778c9f67fe60ced04279c7 /cli/mmcli-modem-simple.c
parentd306bb082f1237f6437e05b7a166df91f46655fb (diff)
downloadModemManager-1385eb394f977ee3a7014bd0025fa65cd7e4a25a.tar.gz
libmm-common: `MMSimpleConnectProperties' won't be considered internal any more
Renamed `MMCommonConnectProperties' to `MMSimpleConnectProperties', and removed the `MMModemSimpleConnectProperties' provided in libmm-glib. We'll just use the original one from libmm-common always.
Diffstat (limited to 'cli/mmcli-modem-simple.c')
-rw-r--r--cli/mmcli-modem-simple.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/mmcli-modem-simple.c b/cli/mmcli-modem-simple.c
index 811d498fe..e0e5aa36f 100644
--- a/cli/mmcli-modem-simple.c
+++ b/cli/mmcli-modem-simple.c
@@ -316,11 +316,11 @@ get_modem_ready (GObject *source,
/* Request to connect the modem? */
if (connect_str) {
GError *error = NULL;
- MMModemSimpleConnectProperties *properties;
+ MMSimpleConnectProperties *properties;
g_debug ("Asynchronously connecting the modem...");
- properties = mm_modem_simple_connect_properties_new_from_string (connect_str, &error);
+ properties = mm_simple_connect_properties_new_from_string (connect_str, &error);
if (!properties) {
g_printerr ("Error parsing connect string: '%s'\n", error->message);
exit (EXIT_FAILURE);