From 9d8d559e1f9928259e9eee2ba770d7295c15d673 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sun, 17 Jan 2021 15:06:24 -0500 Subject: [PATCH] [mod_wolfssl] fix syntax errors --- src/mod_wolfssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod_wolfssl.c b/src/mod_wolfssl.c index 2435a91a..27341be7 100644 --- a/src/mod_wolfssl.c +++ b/src/mod_wolfssl.c @@ -747,7 +747,7 @@ mod_wolfssl_evp_pkey_load_pem_file (const char *fn, log_error_st *errh) if (rc < 0) { log_error(errh, __FILE__, __LINE__, "%s() %s", __func__, fn); if (pkey) { - wolfSSL_OPENSSL_cleanse(pkey->ptr, pkey->size) + wolfSSL_OPENSSL_cleanse(pkey->ptr, pkey->size); buffer_free(pkey); } return NULL; @@ -1689,7 +1689,7 @@ mod_openssl_acme_tls_1 (SSL *ssl, handler_ctx *hctx) } while (0); if (ssl_pemfile_pkey) { - wolfSSL_OPENSSL_cleanse(b->ptr, b->size) + wolfSSL_OPENSSL_cleanse(b->ptr, b->size); buffer_free(ssl_pemfile_pkey); } /*if (ssl_pemfile_x509) buffer_free(ssl_pemfile_x509);*//*(part of chain)*/