summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-07-25 08:41:48 -0400
committerDan Winship <danw@gnome.org>2014-07-25 08:44:24 -0400
commitd998078e9457f74e57d954dd9c1e170a0b80cbd1 (patch)
treed33a959a4f24d58b1cca2b393cb1e630d58e278e
parentae4b9f33df62fa3214d04b70ff006f32f2d0ac04 (diff)
downloadnetwork-manager-applet-d998078e9457f74e57d954dd9c1e170a0b80cbd1.tar.gz
connection-editor: support IPv6 on mobile devices
https://bugzilla.gnome.org/show_bug.cgi?id=733713
-rw-r--r--src/connection-editor/connection-helpers.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/connection-editor/connection-helpers.c b/src/connection-editor/connection-helpers.c
index d99e7d8f..1d748670 100644
--- a/src/connection-editor/connection-helpers.c
+++ b/src/connection-editor/connection-helpers.c
@@ -619,9 +619,6 @@ connection_supports_ip6 (NMConnection *connection)
return vpn_supports_ipv6 (connection);
else if (!strcmp (connection_type, NM_SETTING_PPPOE_SETTING_NAME))
return FALSE;
- else if ( !strcmp (connection_type, NM_SETTING_GSM_SETTING_NAME)
- || !strcmp (connection_type, NM_SETTING_CDMA_SETTING_NAME))
- return FALSE;
else
return TRUE;
}