From 512d53cc2e32ec890bfc11fcda850c08e91279e7 Mon Sep 17 00:00:00 2001 From: Jaehyun Kim Date: Tue, 13 Aug 2024 17:40:54 +0900 Subject: [PATCH] Fix IPv6 config mismatch Change-Id: Ic924dabd3a8d749b6c5ec060085ba165164a7686 Signed-off-by: Jaehyun Kim --- src/network-profile-intf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network-profile-intf.c b/src/network-profile-intf.c index 02614fd..9e47955 100755 --- a/src/network-profile-intf.c +++ b/src/network-profile-intf.c @@ -1024,7 +1024,7 @@ static void __net_extract_ipv6_value(GVariant *variant, net_dev_info_t *net_info net_info->ip_config_type6 = NET_IP_CONFIG_TYPE_OFF; else if (g_strcmp0(value, "auto") == 0 || g_strcmp0(value, "6to4") == 0) - net_info->ip_config_type6 = NET_IP_CONFIG_TYPE_DYNAMIC; + net_info->ip_config_type6 = NET_IP_CONFIG_TYPE_AUTO_IP; } else if (g_strcmp0(subKey, "Address") == 0) { value = g_variant_get_string(var, NULL); -- 2.34.1