Removed build warnings 12/91912/1 accepted/tizen/3.0/common/20161114.105342 accepted/tizen/3.0/ivi/20161028.123030 accepted/tizen/3.0/mobile/20161028.122303 accepted/tizen/3.0/tv/20161028.122617 accepted/tizen/3.0/wearable/20161028.122836 accepted/tizen/common/20161012.154721 accepted/tizen/ivi/20161012.113808 accepted/tizen/mobile/20161012.113723 accepted/tizen/tv/20161012.113735 accepted/tizen/wearable/20161012.113751 submit/tizen/20161012.071922 submit/tizen_3.0/20161028.062323 submit/tizen_3.0/20161028.082323 submit/tizen_3.0_common/20161104.104000
authorchleun.moon <chleun.moon@samsung.com>
Wed, 12 Oct 2016 07:05:44 +0000 (16:05 +0900)
committerchleun.moon <chleun.moon@samsung.com>
Wed, 12 Oct 2016 07:05:56 +0000 (16:05 +0900)
Signed-off-by: cheoleun <chleun.moon@samsung.com>
Change-Id: I3c8ff289b16ea5a81adce09d68145cf9cbc7b509

packaging/capi-vpn-service.spec
src/capi_vpn_service.c
test/vpn_service_test.c

index d46cc08..bd65459 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       vpnsvc-pkg
 Summary:    VPN service library in TIZEN C API
-Version:    1.0.24
+Version:    1.0.25
 Release:    1
 Group:      System/Network
 License:    Apache-2.0
index 24aa119..8a61c49 100755 (executable)
@@ -1087,7 +1087,6 @@ EXPORT_API int vpnsvc_set_local_ip_address(vpnsvc_h handle, const char *local_ip
 {
        CHECK_FEATURE_SUPPORTED(VPN_SERVICE_FEATURE);
 
-       int result = VPNSVC_ERROR_NONE;
        vpnsvc_tun_s *tun_s = NULL;
 
        /* parameter check */
@@ -1111,7 +1110,6 @@ EXPORT_API int vpnsvc_set_remote_ip_address(vpnsvc_h handle, const char *remote_
 {
        CHECK_FEATURE_SUPPORTED(VPN_SERVICE_FEATURE);
 
-       int result = VPNSVC_ERROR_NONE;
        vpnsvc_tun_s *tun_s = NULL;
 
        /* parameter check */
index baa3a88..d5ebb9e 100755 (executable)
@@ -454,7 +454,6 @@ int test_vpnsvc_remove_dns_server()
 int test_vpnsvc_create()
 {
        int rv = VPNSVC_ERROR_NONE;
-       int int_value;
 
        rv = vpnsvc_create(&handle);
 
@@ -470,7 +469,6 @@ int test_vpnsvc_create()
 int test_vpnsvc_destroy()
 {
        int rv = VPNSVC_ERROR_NONE;
-       int int_value;
 
        rv = vpnsvc_destroy(handle);