diff options
author | Mattes D <github@xoft.cz> | 2023-05-09 11:29:35 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2023-05-19 16:25:12 +0200 |
commit | c2e0344110c01eef33697c9611c5689e8eee0691 (patch) | |
tree | aa09568a54eda66f062ae0032ce88957730cd3a5 /src/HTTP | |
parent | Auth SSL Fixes (diff) | |
download | cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.gz cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.bz2 cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.lz cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.xz cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.zst cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.zip |
Diffstat (limited to '')
-rw-r--r-- | src/HTTP/UrlClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HTTP/UrlClient.cpp b/src/HTTP/UrlClient.cpp index 3985e0707..ed47341c3 100644 --- a/src/HTTP/UrlClient.cpp +++ b/src/HTTP/UrlClient.cpp @@ -299,7 +299,7 @@ public: m_Link = &a_Link; if (m_IsTls) { - m_Link->StartTLSClient(m_ParentRequest.GetOwnCert(), m_ParentRequest.GetOwnPrivKey(), m_ParentRequest.m_UrlHost); + m_Link->StartTLSClient(m_ParentRequest.GetOwnCert(), m_ParentRequest.GetOwnPrivKey()); } else { |