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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
verify_server_cert
ssl_start_client
It looks like line 339 is testing on the wrong variable ret in stead if flags
ret
flags
// ssl__client.cpp // starting at line 334 // .... ret = perform_ssl_handshake(ssl_client, cli_cert, cli_key); // Step 7 - Perform SSL/TLS handshake if (ret != 0) { break; } int flags = verify_server_cert(ssl_client); // Step 8 - Verify the server certificate if (ret != 0) { // <====== Wrong guard?? log_failed_cert(flags); } else { log_v("Certificate verified."); }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
It looks like line 339 is testing on the wrong variable
ret
in stead ifflags
The text was updated successfully, but these errors were encountered: