From 16400adfd6a657c1e0227275f973a7799ef64d4f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 19 Oct 2021 18:00:45 +0200 Subject: fixup fixed two more infof() calls with newlines --- lib/vtls/openssl.c | 2 +- lib/vtls/wolfssl.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 03cc028b1..66d714d77 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -2950,7 +2950,7 @@ static CURLcode ossl_connect_step1(struct Curl_easy *data, NULL, cert_name, sizeof(cert_name))) { strcpy(cert_name, "Unknown"); } - infof(data, "SSL: Checking cert %s\"\n", cert_name); + infof(data, "SSL: Checking cert \"%s\"", cert_name); #endif encoded_cert = (const unsigned char *)pContext->pbCertEncoded; diff --git a/lib/vtls/wolfssl.c b/lib/vtls/wolfssl.c index 10ad08c44..8c5b9157b 100644 --- a/lib/vtls/wolfssl.c +++ b/lib/vtls/wolfssl.c @@ -564,7 +564,7 @@ wolfssl_connect_step1(struct Curl_easy *data, struct connectdata *conn, /* we got a session id, use it! */ if(!SSL_set_session(backend->handle, ssl_sessionid)) { Curl_ssl_delsessionid(data, ssl_sessionid); - infof(data, "Can't use session ID, going on without\n"); + infof(data, "Can't use session ID, going on without"); } else infof(data, "SSL re-using session ID"); -- cgit v1.2.1