File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -520,8 +520,8 @@ void MyFrontendAction::EndSourceFileAction() {
520520 << " int minor = (version & 0x0FF00000) >> 20;" << std::endl
521521 << " int patch = (version & 0x00000FF0) >> 4;" << std::endl
522522 << std::endl
523- << " if ((major != ossl_OPENSSL_VERSION_MAJOR) || (minor != ossl_OPENSSL_VERSION_MINOR)) {" << std::endl
524- << " fprintf(stderr, \" Expecting to load OpenSSL version %d.%d.x but got %d.%d.%d\\ n\" ," << std::endl
523+ << " if ((major != ossl_OPENSSL_VERSION_MAJOR) || (minor < ossl_OPENSSL_VERSION_MINOR)) {" << std::endl
524+ << " fprintf(stderr, \" Expecting to load OpenSSL version at least %d.%d.x but got %d.%d.%d\\ n\" ," << std::endl
525525 << " ossl_OPENSSL_VERSION_MAJOR," << std::endl
526526 << " ossl_OPENSSL_VERSION_MINOR," << std::endl
527527 << " major, minor, patch);" << std::endl
You can’t perform that action at this time.
0 commit comments