From 9dfaec91b8d49e7534cc8f9c618a783ef8d4ad72 Mon Sep 17 00:00:00 2001 From: Munkyu Im Date: Fri, 26 Jun 2015 15:41:12 +0900 Subject: [PATCH] check-net: modify message printed Change-Id: I281d558b5921b69d87e524d8fe3f6d6e93d80674 Signed-off-by: Munkyu Im --- tizen/src/util/check_net_darwin.c | 2 +- tizen/src/util/check_net_linux.c | 2 +- tizen/src/util/check_net_win32.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tizen/src/util/check_net_darwin.c b/tizen/src/util/check_net_darwin.c index 0a007191e5..81193d6f12 100644 --- a/tizen/src/util/check_net_darwin.c +++ b/tizen/src/util/check_net_darwin.c @@ -88,7 +88,7 @@ static int get_auto_proxy(void) } if (g_str_has_prefix(type, DIRECT)) { - fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct proxy type."); + fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct connection."); fclose(fp_pacfile); } else if (g_str_has_prefix(type, PROXY)) { p = strtok(proxy, "\";"); diff --git a/tizen/src/util/check_net_linux.c b/tizen/src/util/check_net_linux.c index c2100d836a..5ad1a0e4aa 100644 --- a/tizen/src/util/check_net_linux.c +++ b/tizen/src/util/check_net_linux.c @@ -88,7 +88,7 @@ static int get_auto_proxy(void) } if (g_str_has_prefix(type, DIRECT)) { - fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct proxy type."); + fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct connection."); fclose(fp_pacfile); } else if (g_str_has_prefix(type, PROXY)) { fprintf(stderr, "auto proxy is set to proxy mode\n"); diff --git a/tizen/src/util/check_net_win32.c b/tizen/src/util/check_net_win32.c index 9117ae4c3e..cc64c73c8d 100644 --- a/tizen/src/util/check_net_win32.c +++ b/tizen/src/util/check_net_win32.c @@ -62,7 +62,7 @@ static int get_auto_proxy(BYTE *url) } if (g_str_has_prefix(type, DIRECT)) { - fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct proxy type."); + fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct connection."); fclose(fp_pacfile); } else if (g_str_has_prefix(type, PROXY)) { fprintf(stderr, "auto proxy is set to proxy mode\n"); -- 2.34.1