Skip to content

Commit

Permalink
[Source/cryptalgo/SecureSocketPort] : Make error message more express…
Browse files Browse the repository at this point in the history
…sive
  • Loading branch information
msieben committed Dec 5, 2024
1 parent 0744a75 commit be62841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/cryptalgo/SecureSocketPort.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ uint32_t SecureSocketPort::Handler::EnableClientCertificateRequest()
&& ((OPENSSL_VERSION_NUMBER >> 20) & 0xFF) >= 0 // Minor
&& ((OPENSSL_VERSION_NUMBER >> 4) & 0xF) >= 0 // Patch
&& ((OPENSSL_VERSION_NUMBER) & 0xF) >= 0 // Pre-release
, "OpenSSL version (pre-release) unsupported"
, "OpenSSL version unsupported. Expected version 3.0.0.0 and higher"
);

const char* separator = OPENSSL_info(OPENSSL_INFO_LIST_SEPARATOR);
Expand Down

0 comments on commit be62841

Please sign in to comment.