summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packaging/capi-network-connection.spec2
-rwxr-xr-xsrc/connection_profile.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/packaging/capi-network-connection.spec b/packaging/capi-network-connection.spec
index 30fd976..5881c7e 100644
--- a/packaging/capi-network-connection.spec
+++ b/packaging/capi-network-connection.spec
@@ -1,6 +1,6 @@
Name: capi-network-connection
Summary: Network Connection library in TIZEN C API
-Version: 0.1.3_17
+Version: 0.1.3_18
Release: 1
Group: System/Network
License: Apache License Version 2.0
diff --git a/src/connection_profile.c b/src/connection_profile.c
index 92dbfc2..6d0bfe3 100755
--- a/src/connection_profile.c
+++ b/src/connection_profile.c
@@ -759,6 +759,9 @@ EXPORT_API int connection_profile_set_dns_address(connection_profile_h profile,
else if (inet_aton(dns_address, &(net_info->DnsAddr[order-1].Data.Ipv4)) == 0)
return CONNECTION_ERROR_INVALID_PARAMETER;
+ if (net_info->DnsCount < order)
+ net_info->DnsCount = order;
+
return CONNECTION_ERROR_NONE;
}