diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2014-10-30 00:05:35 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2014-10-30 00:08:51 +0100 |
commit | 98f21ec195a090618139c601870bcc4b1883c33f (patch) | |
tree | a08cf42757675d949b3d60a6a07c1d18f8dd42a7 | |
parent | 01bd5006f5b0fb322fde03e3faa6ead5a80fe40a (diff) |
modem-helpers: fix IP4 -> IPV4
Stupid me, introduced a bug when manually writing the previous patch.
:/
-rw-r--r-- | src/mm-modem-helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-modem-helpers.c b/src/mm-modem-helpers.c index f024695e..64b4928c 100644 --- a/src/mm-modem-helpers.c +++ b/src/mm-modem-helpers.c @@ -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; |