From 3f1c143efb4e9a1d0e6bb08438ed749a3d091651 Mon Sep 17 00:00:00 2001 From: Munkyu Im Date: Tue, 3 Nov 2015 16:16:18 +0900 Subject: [PATCH] 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 --- tizen/src/util/check_net_darwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.34.1