[Privoxy-commits] [privoxy] 28/46: ssl_send_certificate_error(): End body with a single new line
User Git
git at git.privoxy.org
Sun Feb 21 15:10:50 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 172e342a4428b2dafcd6b6b1cf1c8181b77a76a5
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Wed Feb 10 03:33:46 2021 +0100
ssl_send_certificate_error(): End body with a single new line
---
ssl_common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssl_common.c b/ssl_common.c
index e46747ec..ac146f82 100644
--- a/ssl_common.c
+++ b/ssl_common.c
@@ -337,7 +337,7 @@ extern void ssl_send_certificate_error(struct client_state *csp)
"<p><a href=\"https://" CGI_SITE_2_HOST "/\">Privoxy</a> was unable "
"to securely connect to the destination server.</p>"
"<p>Reason: ";
- const char message_end[] = "</body></html>\r\n\r\n";
+ const char message_end[] = "</body></html>\n";
char reason[INVALID_CERT_INFO_BUF_SIZE];
memset(reason, 0, sizeof(reason));
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list