-
Notifications
You must be signed in to change notification settings - Fork 21
ossl: error queue assert to only terminate in debug builds #274
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1858,7 +1858,7 @@ SEASTAR_INTERNAL_END_IGNORE_DEPRECATIONS | |
| char buf[256]; | ||
| ERR_error_string_n(err, buf, sizeof(buf)); | ||
| tls_log.warn("{} stale error on queue before {}: {}", *this, operation, buf); | ||
| SEASTAR_ASSERT(0 && "stale errors on OpenSSL error queue"); | ||
| assert(0 && "stale errors on OpenSSL error queue"); | ||
| } | ||
|
Comment on lines
1858
to
1862
|
||
|
|
||
| std::vector<subject_alt_name> do_get_alt_name_information(const x509_ptr &peer_cert, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.