X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=openssl.c;h=72d97d99b9fbd09748c7b35f637ac94f1c5c1d5b;hp=2c065cc50aa3f2476fdd1ac63962caa0fb40c282;hb=73ee407f47ef75d85d1432f3c2665b05fa0c4926;hpb=0fc07e07a74872fb3347dc762372ba7c843d5a52 diff --git a/openssl.c b/openssl.c index 2c065cc5..72d97d99 100644 --- a/openssl.c +++ b/openssl.c @@ -735,7 +735,6 @@ extern int create_client_ssl_connection(struct client_state *csp) struct ssl_attr *ssl_attr = &csp->ssl_client_attr; /* Paths to certificates file and key file */ char *key_file = NULL; - char *ca_file = NULL; char *cert_file = NULL; int ret = 0; SSL *ssl; @@ -759,7 +758,6 @@ extern int create_client_ssl_connection(struct client_state *csp) /* * Preparing paths to certificates files and key file */ - ca_file = csp->config->ca_cert_file; cert_file = make_certs_path(csp->config->certificate_directory, (const char *)csp->http->hash_of_host_hex, CERT_FILE_TYPE); key_file = make_certs_path(csp->config->certificate_directory,