Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Ortmann committed Oct 2, 2023
1 parent c7fb9e4 commit fbd8276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ void verify_cert_expiry(int idx) {
if ((x509 = SSL_CTX_get0_certificate(ssl_ctx)) &&
(ASN1_TIME_cmp_time_t(X509_get0_notAfter(x509), time(NULL)) < 0)) {
if (idx)
dprintf(idx,"WARNING: certificate expired: %s\n", tls_certfile);
dprintf(idx, "WARNING: certificate expired: %s\n", tls_certfile);
else
putlog(LOG_MISC, "*", "WARNING: certificate expired: %s", tls_certfile);
}
Expand Down

0 comments on commit fbd8276

Please sign in to comment.