From: munkyu.im Date: Tue, 24 Jul 2012 07:38:04 +0000 (+0900) Subject: [Title] fix proxy server setting X-Git-Tag: TizenStudio_2.0_p2.3~1396^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7e2722d9e486b5cb08b456631584e556d67fb3a;p=sdk%2Femulator%2Fqemu.git [Title] fix proxy server setting [Type] Bugfix [Module] Emulator / network [Priority] [Jira#] [Redmine#] [Problem]when try to set the same proxy to every proxy server on windows [Cause] [Solution] [TestCase] --- diff --git a/tizen/src/option.c b/tizen/src/option.c index d1ce63a..6ee0f43 100644 --- a/tizen/src/option.c +++ b/tizen/src/option.c @@ -331,7 +331,11 @@ int gethostproxy(char *http_proxy, char *https_proxy, char *ftp_proxy, char *soc strcpy(socks_proxy, real_proxy); } else { - fprintf(stderr, "%s is wrong proxy format\n", p); + INFO("all protocol uses the same proxy server: %s\n", p); + strcpy(http_proxy, p); + strcpy(https_proxy, p); + strcpy(ftp_proxy, p); + strcpy(socks_proxy, p); } } }