summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules-available/systemstatus/page.inc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules-available/systemstatus/page.inc.php b/modules-available/systemstatus/page.inc.php
index ca57de47..cf2a4fe0 100644
--- a/modules-available/systemstatus/page.inc.php
+++ b/modules-available/systemstatus/page.inc.php
@@ -320,7 +320,9 @@ class Page_SystemStatus extends Page
}
while (($line = fgets($fh, 1000))) {
if (strpos($line, ':SSL routines:') === false
- && strpos($line, ' SSL: -1 5 104 Connection reset by peer') === false) {
+ && strpos($line, ' SSL: -1 5 104 Connection reset by peer') === false
+ && strpos($line, 'GET/HEAD with content-length') === false
+ && strpos($line, 'POST-request, but content-length missing') === false) {
$ret[] = $line;
}
}