We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenSSL had some depreciation with it's 3.0 release that cause errors with the current build, specifically:
ssl_openssl_impl.cpp:107:66: error: ‘long unsigned int ERR_get_error_line_data(const char**, int*, const char**, int*)’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations]
ssl_openssl_impl.cpp:94:66: error: ‘long unsigned int ERR_get_error_line_data(const char**, int*, const char**, int*)’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 94 | while ((err = ERR_get_error_line_data(NULL, NULL, &data, &flags)) != 0) {
Either we need to compile this without -Werror=deprecated-declarations or we need to migrate to openssl's new syntax
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OpenSSL had some depreciation with it's 3.0 release that cause errors with the current build, specifically:
ssl_openssl_impl.cpp:107:66: error: ‘long unsigned int ERR_get_error_line_data(const char**, int*, const char**, int*)’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations]
ssl_openssl_impl.cpp:94:66: error: ‘long unsigned int ERR_get_error_line_data(const char**, int*, const char**, int*)’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations]
94 | while ((err = ERR_get_error_line_data(NULL, NULL, &data, &flags)) != 0) {
Either we need to compile this without -Werror=deprecated-declarations or we need to migrate to openssl's new syntax
The text was updated successfully, but these errors were encountered: