danf: curl-www/auto log.cgi,1.19,1.20
| Newsgroups | gmane.comp.web.curl.www.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/curl/curl-www/auto
In directory labb:/tmp/cvs-serv13252
Modified Files:
log.cgi
Log Message:
Highlight memory failures in log.
Index: log.cgi
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/log.cgi,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- log.cgi 19 May 2006 21:01:09 -0000 1.19
+++ log.cgi 16 Jan 2007 22:08:22 -0000 1.20
@@ -70,7 +70,7 @@
push @out, "\n<div class=\"mini\">\n";
for(@present) {
chomp;
- if(checkwarn($_) || ($_ =~ /FAILED/)) {
+ if(checkwarn($_) || ($_ =~ /FAILED/) || ($_ =~ /MEMORY FAILURE/)) {
$num++;
push @out, "<a name=\"prob$num\"></a><div class=\"warning\">" . CGI::escapeHTML($_) . "</div>\n";
}