Remove extra period at ends of exception messages in winhttp transport (#3601)

This commit is contained in:
Ahson Khan 2022-04-29 21:24:30 +00:00 committed by GitHub
parent 5dba78eaa3
commit dffcb4c62b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -353,7 +353,7 @@ void WinHttpTransport::CreateRequestHandle(std::unique_ptr<_detail::HandleManage
WINHTTP_NO_CLIENT_CERT_CONTEXT, WINHTTP_NO_CLIENT_CERT_CONTEXT,
0)) 0))
{ {
GetErrorAndThrow("Error while setting client cert context to ignore.."); GetErrorAndThrow("Error while setting client cert context to ignore.");
} }
} }
@ -363,7 +363,7 @@ void WinHttpTransport::CreateRequestHandle(std::unique_ptr<_detail::HandleManage
if (!WinHttpSetOption( if (!WinHttpSetOption(
handleManager->m_requestHandle, WINHTTP_OPTION_SECURITY_FLAGS, &option, sizeof(option))) handleManager->m_requestHandle, WINHTTP_OPTION_SECURITY_FLAGS, &option, sizeof(option)))
{ {
GetErrorAndThrow("Error while setting ignore unknown server certificate.."); GetErrorAndThrow("Error while setting ignore unknown server certificate.");
} }
} }
} }