https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a062160b295ff62d36aca…
commit a062160b295ff62d36aca0642888478c7872a047
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Thu Dec 13 11:49:13 2018 +0100
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Thu Dec 13 11:49:13 2018 +0100
[ROSAUTOTEST] Forget about HTTP, go over HTTPS directly
ONLINE-855
---
modules/rostests/rosautotest/CWebService.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/rostests/rosautotest/CWebService.cpp
b/modules/rostests/rosautotest/CWebService.cpp
index c3c1605bf9..2a01baa9cb 100644
--- a/modules/rostests/rosautotest/CWebService.cpp
+++ b/modules/rostests/rosautotest/CWebService.cpp
@@ -26,7 +26,7 @@ CWebService::CWebService()
if(!m_hInet)
FATAL("InternetOpenW failed\n");
- m_hHTTP = InternetConnectW(m_hInet, szHostname, INTERNET_DEFAULT_HTTP_PORT, NULL,
NULL, INTERNET_SERVICE_HTTP, 0, 0);
+ m_hHTTP = InternetConnectW(m_hInet, szHostname, INTERNET_DEFAULT_HTTPS_PORT, NULL,
NULL, INTERNET_SERVICE_HTTP, 0, 0);
if(!m_hHTTP)
FATAL("InternetConnectW failed\n");