[Privoxy-commits] [privoxy] 39/46: OpenSSL: Fix white-space
User Git
git at git.privoxy.org
Sun Feb 21 15:11:01 UTC 2021
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit cd2f73de600bd221959f142e99bf932e446ce0e7
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sun Feb 14 20:33:46 2021 +0100
OpenSSL: Fix white-space
---
openssl.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/openssl.c b/openssl.c
index c4783fb0..1386d167 100644
--- a/openssl.c
+++ b/openssl.c
@@ -61,7 +61,7 @@
static int generate_host_certificate(struct client_state *csp);
static void free_client_ssl_structures(struct client_state *csp);
static void free_server_ssl_structures(struct client_state *csp);
-static int ssl_store_cert(struct client_state *csp, X509* crt);
+static int ssl_store_cert(struct client_state *csp, X509 *crt);
static void log_ssl_errors(int debuglevel, const char* fmt, ...) __attribute__((format(printf, 2, 3)));
static int ssl_inited = 0;
@@ -265,7 +265,7 @@ extern int ssl_recv_data(struct ssl_attr *ssl_attr, unsigned char *buf, size_t m
* Returns : 0 on success and negative value on error
*
*********************************************************************/
-static int ssl_store_cert(struct client_state *csp, X509* crt)
+static int ssl_store_cert(struct client_state *csp, X509 *crt)
{
long len = 0;
struct certs_chain *last = &(csp->server_certs_chain);
@@ -1575,7 +1575,7 @@ exit:
* pointer to certificate instance otherwise
*
*********************************************************************/
-static X509* ssl_certificate_load(const char *cert_path)
+static X509 *ssl_certificate_load(const char *cert_path)
{
X509 *cert = NULL;
FILE *cert_f = NULL;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list