handle /NOIEPROXY, even if /PROXY is used

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4341 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-10-21 14:24:01 +00:00
parent e6673d6f0e
commit 7c4de9c74d

View file

@ -282,7 +282,7 @@ __declspec(dllexport) void download (HWND parent,
popstring(proxy); popstring(proxy);
popstring(url); popstring(url);
} }
else if (!lstrcmpi(url, "/NOIEPROXY")) { if (!lstrcmpi(url, "/NOIEPROXY")) {
getieproxy=0; getieproxy=0;
popstring(url); popstring(url);
} }
@ -348,7 +348,7 @@ __declspec(dllexport) void download (HWND parent,
buf[8192-1]=0; buf[8192-1]=0;
RegCloseKey(hKey); RegCloseKey(hKey);
} }
if(manualproxy == 1){ if (manualproxy == 1) {
p = proxy; p = proxy;
} }