From: Munkyu Im Date: Fri, 26 Jun 2015 06:41:12 +0000 (+0900) Subject: check-net: modify message printed X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~341 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9dfaec91b8d49e7534cc8f9c618a783ef8d4ad72;p=sdk%2Femulator%2Fqemu.git check-net: modify message printed Change-Id: I281d558b5921b69d87e524d8fe3f6d6e93d80674 Signed-off-by: Munkyu Im --- 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");