diff -uriN polygraph-2.8.1/src/loganalyzers/BlobDb.cc polygraph-2.8.1-fnm/src/loganalyzers/BlobDb.cc --- polygraph-2.8.1/src/loganalyzers/BlobDb.cc 2003-04-01 03:29:38 +0300 +++ polygraph-2.8.1-fnm/src/loganalyzers/BlobDb.cc 2005-03-15 21:04:24 +0200 @@ -80,7 +80,7 @@ if (errs.count()) return *(const ReportBlob*)errs.last(); - cerr << here << "error: cannot find blob: " << key << endl; +// cerr << here << "error: cannot find blob: " << key << endl; // create an error blob so that we can return something ReportBlob blob(key); diff -uriN polygraph-2.8.1/src/loganalyzers/ReportFigure.cc polygraph-2.8.1-fnm/src/loganalyzers/ReportFigure.cc --- polygraph-2.8.1/src/loganalyzers/ReportFigure.cc 2002-01-11 22:25:35 +0200 +++ polygraph-2.8.1-fnm/src/loganalyzers/ReportFigure.cc 2005-03-15 20:58:51 +0200 @@ -112,13 +112,13 @@ } void ReportFigure::setCtrlOptions() { - *theCtrlFile << "set term png color small" << endl; + *theCtrlFile << "set term png xFFFFFF small" << endl; *theCtrlFile << "set output '" << thePlotFname << "'" << endl; *theCtrlFile << "set title ''" << endl; *theCtrlFile << "set grid" << endl; - *theCtrlFile << "set linestyle 1 lt 3" << endl; - *theCtrlFile << "set linestyle 2 lt 1" << endl; - *theCtrlFile << "set linestyle 3 lt 2" << endl; - *theCtrlFile << "set linestyle 4 lt 4" << endl; + *theCtrlFile << "set style line 1 lt 3" << endl; + *theCtrlFile << "set style line 2 lt 1" << endl; + *theCtrlFile << "set style line 3 lt 2" << endl; + *theCtrlFile << "set style line 4 lt 4" << endl; }