From 3dd27fb0637cb13c9de09b976765f7a2ba770ac7 Mon Sep 17 00:00:00 2001 From: "Thomas Guyot-Sionnest thomas@aei.ca" Date: Thu, 19 Mar 2009 13:59:43 -0700 Subject: Fixed check_http not timing-out on redirects --- plugins/check_http.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/check_http.c') diff --git a/plugins/check_http.c b/plugins/check_http.c index 2f2460c6..72d0a2b6 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -894,9 +894,6 @@ check_http (void) #endif if (sd) close(sd); - /* reset the alarm */ - alarm (0); - /* Save check time */ microsec = deltime (tv); elapsed_time = (double)microsec / 1.0e6; @@ -999,6 +996,9 @@ check_http (void) } /* end else (server_expect_yn) */ + /* reset the alarm - must be called *after* redir or we'll never die on redirects! */ + alarm (0); + if (maximum_age >= 0) { result = max_state_alt(check_document_dates(header, &msg), result); } -- cgit v1.2.3