mirror of
https://github.com/curl/curl.git
synced 2026-07-23 02:17:21 +03:00
tls: remove newline from three infof() calls
Follow-up to e7416cf
Reported-by: billionai on github
Fixes #7879
Closes #7880
This commit is contained in:
parent
275e543133
commit
54aa9c48b2
3 changed files with 3 additions and 3 deletions
|
|
@ -955,7 +955,7 @@ static void display_cert_info(struct Curl_easy *data,
|
|||
subject = CERT_NameToAscii(&cert->subject);
|
||||
issuer = CERT_NameToAscii(&cert->issuer);
|
||||
common_name = CERT_GetCommonName(&cert->subject);
|
||||
infof(data, "subject: %s\n", subject);
|
||||
infof(data, "subject: %s", subject);
|
||||
|
||||
CERT_GetCertTimes(cert, ¬Before, ¬After);
|
||||
PR_ExplodeTime(notBefore, PR_GMTParameters, &printableTime);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue