[Privoxy-commits] [privoxy] 08/13: OpenSSL ssl_store_cert(): Remove a superfluous space before the serial number
User Git
git at git.privoxy.org
Wed Feb 24 08:55:05 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 ddcdf629f00a5b42f3f4471d7592de3170eaadee
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Mon Feb 22 15:49:07 2021 +0100
OpenSSL ssl_store_cert(): Remove a superfluous space before the serial number
---
openssl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/openssl.c b/openssl.c
index 469c2170..1c161727 100644
--- a/openssl.c
+++ b/openssl.c
@@ -387,7 +387,7 @@ static int ssl_store_cert(struct client_state *csp, X509 *crt)
ul = (unsigned long)l;
neg = "";
}
- if (BIO_printf(bio, " %s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0)
+ if (BIO_printf(bio, "%s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0)
{
log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for serial failed");
ret = -1;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list