[Title] fix proxy server setting
authormunkyu.im <munkyu.im@samsung.com>
Tue, 24 Jul 2012 07:38:04 +0000 (16:38 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Tue, 24 Jul 2012 07:44:41 +0000 (16:44 +0900)
[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]

tizen/src/option.c

index d1ce63a..6ee0f43 100644 (file)
@@ -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);
             }
         }
        }