Eliminate user privacy logs 73/13173/1
authortaesub.kim <taesub.kim@samsung.com>
Fri, 29 Nov 2013 02:07:40 +0000 (11:07 +0900)
committertaesub.kim <taesub.kim@samsung.com>
Fri, 29 Nov 2013 02:07:58 +0000 (11:07 +0900)
Change-Id: I7fed7a584a10c48530286e698dbb1a4904d70aed
Signed-off-by: Taesub Kim <taesub.kim@samsung.com>
debian/changelog
packaging/capi-network-connection.spec
src/connection.c
src/connection_profile.c

index 6afb47d..3d47b87 100644 (file)
@@ -1,3 +1,11 @@
+capi-network-connection (0.1.3-16) unstable; urgency=low
+
+  * Eliminate user privacy information
+  * Git: framework/api/connection
+  * Tag: capi-network-connection_0.1.3-16
+
+ -- Taesub Kim <taesub.kim@samsung.com>  Fri, 29 Nov 2013 11:29:46 +0900
+
 capi-network-connection (0.1.3-15) unstable; urgency=low
 
   * Fix memory leak
index e26d6a6..dc39b91 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-network-connection
 Summary:    Network Connection library in TIZEN C API
-Version:    0.1.3_15
+Version:    0.1.3_16
 Release:    1
 Group:      System/Network
 License:    Apache License Version 2.0
index 9622656..899d87f 100644 (file)
@@ -257,6 +257,8 @@ EXPORT_API int connection_create(connection_h* connection)
                return CONNECTION_ERROR_OPERATION_FAILED;
        }
 
+       CONNECTION_LOG(CONNECTION_ERROR, "Connection successfully created!\n");
+
        *connection = g_try_malloc0(sizeof(connection_handle_s));
        if (*connection != NULL) {
                CONNECTION_LOG(CONNECTION_INFO, "New Handle Created %p\n", *connection);
@@ -345,8 +347,6 @@ EXPORT_API int connection_get_ip_address(connection_h connection,
                return CONNECTION_ERROR_OPERATION_FAILED;
        }
 
-       CONNECTION_LOG(CONNECTION_INFO, "IP Address %s\n", *ip_address);
-
        return CONNECTION_ERROR_NONE;
 }
 
@@ -376,8 +376,6 @@ EXPORT_API int connection_get_proxy(connection_h connection,
                return CONNECTION_ERROR_OPERATION_FAILED;
        }
 
-       CONNECTION_LOG(CONNECTION_INFO, "Proxy Address %s\n", *proxy);
-
        return CONNECTION_ERROR_NONE;
 }
 
index 2aaf1c2..92dbfc2 100644 (file)
@@ -88,7 +88,6 @@ static const char* __profile_get_ethernet_proxy(void)
                return NULL;
        }
 
-       CONNECTION_LOG(CONNECTION_INFO, "Get system proxy: %s", proxy);
        return proxy;
 }