summaryrefslogtreecommitdiffstats
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-12-28 12:30:23 +0100
committerGitHub <noreply@github.com>2025-12-28 12:30:23 +0100
commit9c26154698315e06b355b65dd9515419b14b4e0c (patch)
tree8be76d089d928f35eb7eedccf58122cd562834f8 /plugins/check_http.c
parentf8db90c206e777a21ff69a301406a11ca627034c (diff)
parent828a9720b10814c5836d03aa35af05d196c4104b (diff)
downloadmonitoring-plugins-9c26154698315e06b355b65dd9515419b14b4e0c.tar.gz
Merge branch 'master' into fix/check-curl-append-query-string-on-redirect
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r--plugins/check_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index d264b95d..d2f080c7 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -1036,7 +1036,7 @@ int check_http(void) {
1036 printf("SSL initialized\n"); 1036 printf("SSL initialized\n");
1037 } 1037 }
1038 if (result != STATE_OK) { 1038 if (result != STATE_OK) {
1039 die(STATE_CRITICAL, NULL); 1039 die(STATE_CRITICAL, _("HTTP CRITICAL - SSL error\n"));
1040 } 1040 }
1041 microsec_ssl = deltime(tv_temp); 1041 microsec_ssl = deltime(tv_temp);
1042 elapsed_time_ssl = (double)microsec_ssl / 1.0e6; 1042 elapsed_time_ssl = (double)microsec_ssl / 1.0e6;