Remove extra period at ends of exception messages in winhttp transport (#3601)
This commit is contained in:
parent
5dba78eaa3
commit
dffcb4c62b
@ -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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user