Fixed build error for __libnet_check_address_type 44/74844/1 accepted/tizen/common/20160616.151806 accepted/tizen/ivi/20160617.081459 accepted/tizen/mobile/20160617.081150 accepted/tizen/tv/20160617.081235 accepted/tizen/wearable/20160617.081304 submit/tizen/20160616.005920
authortaesubkim <taesub.kim@samsung.com>
Thu, 16 Jun 2016 00:52:41 +0000 (09:52 +0900)
committertaesubkim <taesub.kim@samsung.com>
Thu, 16 Jun 2016 00:52:47 +0000 (09:52 +0900)
Change-Id: I679cb85d24e2ab3ae846fd68fd88e73687c69f27
Signed-off-by: Taesub Kim <taesub.kim@samsung.com>
packaging/capi-network-connection.spec
src/libnetwork.c

index 2397f5d..3b327e5 100755 (executable)
@@ -1,6 +1,6 @@
 Name:          capi-network-connection
 Summary:       Network Connection library in TIZEN C API
-Version:       1.0.91
+Version:       1.0.92
 Release:       1
 Group:         System/Network
 License:       Apache-2.0
index 212963c..efd5cf6 100755 (executable)
@@ -476,18 +476,6 @@ static void __libnet_evt_cb(net_event_info_t *event_cb, void *user_data)
 }
 //LCOV_EXCL_STOP
 
-static int __libnet_check_address_type(int address_family, const char *address)
-{
-       struct in6_addr buf;
-       int err = 0;
-
-       err = inet_pton(address_family, address, &buf);
-       if (err > 0)
-               return 1;
-
-       return 0;
-}
-
 int __libnet_get_connected_count(struct _profile_list_s *profile_list)
 {
        int count = 0;