diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-07-28 16:35:51 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-07 16:50:43 +0200 |
commit | 4d51150ca0aae979718ac10030df85421b763cd1 (patch) | |
tree | a824a83feefca6695fbe1072b3d724290b07af1f /src/IO/tls_openssl.c | |
parent | a9950b3aca2a264e0ee1da1e2a29d3be11e6606c (diff) |
Make Dillo C99 standard compliant
Reviewed-by: dogma
Diffstat (limited to 'src/IO/tls_openssl.c')
-rw-r--r-- | src/IO/tls_openssl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/IO/tls_openssl.c b/src/IO/tls_openssl.c index 10a68dbd..3e68e928 100644 --- a/src/IO/tls_openssl.c +++ b/src/IO/tls_openssl.c @@ -199,7 +199,7 @@ static void Tls_info_cb(const SSL *ssl, int where, int ret) * abysmal openssl documentation, this was worked out from reading discussion * on the web and then reading openssl source to see what it normally does. */ -static void Tls_load_certificates() +static void Tls_load_certificates(void) { /* curl-7.37.1 says that the following bundle locations are used on "Debian * systems", "Redhat and Mandriva", "old(er) Redhat", "FreeBSD", and @@ -1338,7 +1338,7 @@ void a_Tls_openssl_close_by_fd(int fd) } } -static void Tls_servers_freeall() +static void Tls_servers_freeall(void) { if (servers) { Server_t *s; @@ -1353,7 +1353,7 @@ static void Tls_servers_freeall() } } -static void Tls_fd_map_remove_all() +static void Tls_fd_map_remove_all(void) { if (fd_map) { FdMapEntry_t *fme; |