From 7c90be493f76b2ee0ef384db932313f764187a5c Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 26 Nov 2019 12:40:57 +0100 Subject: [PATCH] Remove a couple of spaces --- ssl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ssl.c b/ssl.c index ce815168..1fed0687 100644 --- a/ssl.c +++ b/ssl.c @@ -107,9 +107,9 @@ typedef struct { char *key_file_path; /* filename of the key file */ } key_options; -extern int generate_webpage_certificate(struct client_state * csp); -static char * make_certs_path(const char * conf_dir, const char * file_name, const char * suffix); -static int file_exists(const char * path); +extern int generate_webpage_certificate(struct client_state *csp); +static char *make_certs_path(const char *conf_dir, const char *file_name, const char *suffix); +static int file_exists(const char *path); static int host_to_hash(struct client_state *csp); static int ssl_verify_callback(void *data, mbedtls_x509_crt *crt, int depth, uint32_t *flags); static void free_certificate_chain(struct client_state *csp); @@ -1221,7 +1221,7 @@ exit: * >0 => Length of created certificate. * *********************************************************************/ -extern int generate_webpage_certificate(struct client_state * csp) +extern int generate_webpage_certificate(struct client_state *csp) { mbedtls_x509_crt issuer_cert; mbedtls_pk_context loaded_issuer_key, loaded_subject_key; @@ -1963,7 +1963,7 @@ static int file_exists(const char *path) * 0 => Hash created successfully * *********************************************************************/ -static int host_to_hash(struct client_state * csp) +static int host_to_hash(struct client_state *csp) { int ret = 0; -- 2.39.2