[Privoxy-commits] [privoxy] 20/46: OpenSSL ssl_store_cert(): Fix two error messages
User Git
git at git.privoxy.org
Sun Feb 21 15:10:42 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 b14150078393effcdaf37c436b789919e2ea12af
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Fri Feb 12 18:00:34 2021 +0100
OpenSSL ssl_store_cert(): Fix two error messages
---
openssl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/openssl.c b/openssl.c
index 824b0d73..2ab67c96 100644
--- a/openssl.c
+++ b/openssl.c
@@ -283,7 +283,7 @@ static int ssl_store_cert(struct client_state *csp, X509* crt)
if (!bio)
{
- log_ssl_errors(LOG_LEVEL_ERROR, "BIO_new_mem_buf() failed");
+ log_ssl_errors(LOG_LEVEL_ERROR, "BIO_new() failed");
return -1;
}
@@ -328,7 +328,7 @@ static int ssl_store_cert(struct client_state *csp, X509* crt)
bio = BIO_new(BIO_s_mem());
if (!bio)
{
- log_ssl_errors(LOG_LEVEL_ERROR, "BIO_new_mem_buf() failed");
+ log_ssl_errors(LOG_LEVEL_ERROR, "BIO_new() failed");
ret = -1;
goto exit;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list