We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d4692 commit 4c219f3Copy full SHA for 4c219f3
lib/cpp/src/thrift/transport/TSSLSocket.cpp
@@ -705,7 +705,7 @@ void TSSLSocket::initializeHandshake() {
705
}
706
707
void TSSLSocket::authorize() {
708
- int rc = SSL_get_verify_result(ssl_);
+ long rc = SSL_get_verify_result(ssl_);
709
if (rc != X509_V_OK) { // verify authentication result
710
throw TSSLException(string("SSL_get_verify_result(), ") + X509_verify_cert_error_string(rc));
711
0 commit comments