modem-helpers: fix IP4 -> IPV4

Stupid me, introduced a bug when manually writing the previous patch.

:/
This commit is contained in:
Aleksander Morgado
2014-10-30 00:05:35 +01:00
parent 01bd5006f5
commit 98f21ec195

View File

@@ -1899,7 +1899,7 @@ mm_3gpp_get_ip_family_from_pdp_type (const gchar *pdp_type)
{
if (g_str_equal (pdp_type, "IP"))
return MM_BEARER_IP_FAMILY_IPV4;
if (g_str_equal (pdp_type, "IP4"))
if (g_str_equal (pdp_type, "IPV4"))
return MM_BEARER_IP_FAMILY_IPV4;
if (g_str_equal (pdp_type, "IPV6"))
return MM_BEARER_IP_FAMILY_IPV6;