aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-03-16 13:15:01 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-16 14:53:26 +0100
commit327a69ed16f2a47e26cce704f025b864f03130a4 (patch)
tree5810a7325e0e52f949eaa692cef99c1de7a93fb1 /plugins
parent70c70a61abdfee3faf8491a54c2c19af160b5875 (diff)
novatel: assume only IPv4 supported for now
Diffstat (limited to 'plugins')
-rw-r--r--plugins/novatel/mm-broadband-bearer-novatel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/novatel/mm-broadband-bearer-novatel.c b/plugins/novatel/mm-broadband-bearer-novatel.c
index 2f9b4565..2dcb5112 100644
--- a/plugins/novatel/mm-broadband-bearer-novatel.c
+++ b/plugins/novatel/mm-broadband-bearer-novatel.c
@@ -100,7 +100,6 @@ detailed_connect_context_complete_and_free_successful (DetailedConnectContext *c
detailed_connect_context_complete_and_free (ctx);
}
-
static gboolean
connect_3gpp_finish (MMBroadbandBearer *self,
GAsyncResult *res,
@@ -115,9 +114,9 @@ connect_3gpp_finish (MMBroadbandBearer *self,
config = g_simple_async_result_get_op_res_gpointer (G_SIMPLE_ASYNC_RESULT (res));
- /* In the default implementation, we assume we'll have the same configs */
+ /* In the default implementation, we assume only IPv4 is supported */
*ipv4_config = g_object_ref (config);
- *ipv6_config = g_object_ref (config);
+ *ipv6_config = NULL;
return TRUE;
}