Skip to content

Commit 2217042

Browse files
committed
[mod_openssl] fix type mismatch fn run w/ libressl
fix type mismatch for param passed to func run with libressl
1 parent aded5fb commit 2217042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mod_openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3521,7 +3521,7 @@ network_init_ssl (server *srv, plugin_config_socket *s, plugin_data *p)
35213521
SSL_CTX_set_verify_depth(s->ssl_ctx, s->ssl_verifyclient_depth + 1);
35223522
if (s->ssl_ca_crl_file && !buffer_is_blank(s->ssl_ca_crl_file)) {
35233523
X509_STORE *store = SSL_CTX_get_cert_store(s->ssl_ctx);
3524-
if (!mod_openssl_load_cacrls(store, s->ssl_ca_crl_file, srv))
3524+
if (!mod_openssl_load_cacrls(store,s->ssl_ca_crl_file->ptr,srv))
35253525
return -1;
35263526
}
35273527
}

0 commit comments

Comments
 (0)