https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ec96bf8e5c040e844b697…
commit ec96bf8e5c040e844b6975b980ed0c73d25bba77
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Thu Dec 13 11:54:59 2018 +0100
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Thu Dec 13 11:54:59 2018 +0100
[ROSAUTOTEST] Force HTTPS
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 2a01baa9cb..850b466117 100644
--- a/modules/rostests/rosautotest/CWebService.cpp
+++ b/modules/rostests/rosautotest/CWebService.cpp
@@ -69,7 +69,7 @@ CWebService::DoRequest(const string& InputData)
DWORD DataLength;
/* Post our test results to the web service */
- m_hHTTPRequest = HttpOpenRequestW(m_hHTTP, L"POST", szServerFile, NULL,
NULL, NULL, INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS | INTERNET_FLAG_NO_COOKIES |
INTERNET_FLAG_RELOAD | INTERNET_FLAG_NO_CACHE_WRITE, 0);
+ m_hHTTPRequest = HttpOpenRequestW(m_hHTTP, L"POST", szServerFile, NULL,
NULL, NULL, INTERNET_FLAG_SECURE | INTERNET_FLAG_NO_COOKIES | INTERNET_FLAG_RELOAD |
INTERNET_FLAG_NO_CACHE_WRITE, 0);
if(!m_hHTTPRequest)
FATAL("HttpOpenRequestW failed\n");