From: Munkyu Im Date: Tue, 3 Nov 2015 07:16:18 +0000 (+0900) Subject: check-net: fix duplicated http_proxy X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~193 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f1c143efb4e9a1d0e6bb08438ed749a3d091651;p=sdk%2Femulator%2Fqemu.git check-net: fix duplicated http_proxy replace duplicated "http_proxy=" with "https_proxy=" It is typo error. Change-Id: Ic02493790ddcc52367a179c4a7d51d5812b46517 Signed-off-by: Munkyu Im --- diff --git a/tizen/src/util/check_net_darwin.c b/tizen/src/util/check_net_darwin.c index d002a1ecd3..bc7dfbb697 100644 --- a/tizen/src/util/check_net_darwin.c +++ b/tizen/src/util/check_net_darwin.c @@ -94,7 +94,7 @@ static int get_auto_proxy(void) p = strtok(proxy, "\";"); if (p != NULL) { fprintf(stdout, "MODE:Auto\n"); - fprintf(stdout, "http_proxy=%s http_proxy=%s ftp_proxy=%s socks_proxy=%s", p, p, p, p); + fprintf(stdout, "http_proxy=%s https_proxy=%s ftp_proxy=%s socks_proxy=%s", p, p, p, p); } fclose(fp_pacfile); } else {