From c9f2f0ec0505dfdc7fe92f0abb83ba3d09f0f2ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= <12514511+RincewindsHat@users.noreply.github.com> Date: Thu, 4 Jun 2026 22:43:52 +0200 Subject: [PATCH] fixup! check_curl: implement ok summary --- plugins/check_curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/check_curl.c b/plugins/check_curl.c index bf30334b..adafc620 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c @@ -161,7 +161,7 @@ int main(int argc, char **argv) { mp_check overall = mp_check_init(); mp_subcheck sc_test = check_http(config, working_state, 0); - mp_set_ok_summary(&overall, "Connection test succeded"); + mp_set_ok_summary(&overall, "Connection test succeeded"); mp_add_subcheck_to_check(&overall, sc_test);