mirror of
https://github.com/apache/httpd.git
synced 2025-08-06 11:06:17 +00:00
Merge r1533765, r1621419, r1638159, r1638188, r1601603, r1638412, r1418763 from trunk
ssl: Axe needless string duplication in setup for call to apr_proc_create() Fix sscanf format spotted by cppcheck fix indent. fix style Private function doesn't need ap_ prefix. tab vs space rename variables: s should be the server_rec Submitted by: trawick, jailletc36, jailletc36, jailletc36, takashi, jailletc36, sf Reviewed by: jailletc36, ylavic, covener Backported by: jailletc36 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1642403 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -1039,7 +1039,7 @@ static apr_status_t ssl_init_server_certs(server_rec *s,
|
||||
if (!(cert = SSL_CTX_get0_certificate(mctx->ssl_ctx))) {
|
||||
#else
|
||||
ssl = SSL_new(mctx->ssl_ctx);
|
||||
if (ssl) {
|
||||
if (ssl) {
|
||||
/* Workaround bug in SSL_get_certificate in OpenSSL 0.9.8y */
|
||||
SSL_set_connect_state(ssl);
|
||||
cert = SSL_get_certificate(ssl);
|
||||
|
Reference in New Issue
Block a user