From 802e46f8ea36c344f112d7e1dd8d64d17a4cc939 Mon Sep 17 00:00:00 2001 From: Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> Date: Mon, 15 Sep 2025 12:59:37 +0200 Subject: Run clang-format again --- plugins/sslutils.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'plugins/sslutils.c') diff --git a/plugins/sslutils.c b/plugins/sslutils.c index 3ce6afed..0e6d7525 100644 --- a/plugins/sslutils.c +++ b/plugins/sslutils.c @@ -437,16 +437,14 @@ mp_subcheck mp_net_ssl_check_certificate(X509 *certificate, int days_till_exp_wa xasprintf(&sc_cert.output, _("Certificate '%s' expired on %s"), commonName, timestamp); sc_cert = mp_set_subcheck_state(sc_cert, STATE_CRITICAL); } else if (days_left == 0) { - xasprintf(&sc_cert.output, _("Certificate '%s' just expired (%s)"), commonName, - timestamp); + xasprintf(&sc_cert.output, _("Certificate '%s' just expired (%s)"), commonName, timestamp); if (days_left > days_till_exp_crit) { sc_cert = mp_set_subcheck_state(sc_cert, STATE_WARNING); } else { sc_cert = mp_set_subcheck_state(sc_cert, STATE_CRITICAL); } } else { - xasprintf(&sc_cert.output, _("Certificate '%s' will expire on %s"), commonName, - timestamp); + xasprintf(&sc_cert.output, _("Certificate '%s' will expire on %s"), commonName, timestamp); sc_cert = mp_set_subcheck_state(sc_cert, STATE_OK); } X509_free(certificate); -- cgit v1.2.3-74-g34f1