INN commit: trunk (doc/pod/news.pod scripts/innreport_inn.pm)

INN Commit Russ_Allbery at isc.org
Tue Jun 24 06:47:46 UTC 2008


    Date: Monday, June 23, 2008 @ 23:47:46
  Author: iulius
Revision: 7918

Fix another long-standing bug in innreport which prevented it from
correctly reporting innfeed log messages.

Modified:
  trunk/doc/pod/news.pod
  trunk/scripts/innreport_inn.pm

--------------------------+
 doc/pod/news.pod         |    2 +-
 scripts/innreport_inn.pm |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod	2008-06-24 06:45:53 UTC (rev 7917)
+++ doc/pod/news.pod	2008-06-24 06:47:46 UTC (rev 7918)
@@ -140,7 +140,7 @@
 =item *
 
 Fixed a long-standing bug in B<innreport> which prevented it from
-correctly reporting B<nnrpd> log messages.
+correctly reporting B<nnrpd> and B<innfeed> log messages.
 
 =item *
 

Modified: scripts/innreport_inn.pm
===================================================================
--- scripts/innreport_inn.pm	2008-06-24 06:45:53 UTC (rev 7917)
+++ scripts/innreport_inn.pm	2008-06-24 06:47:46 UTC (rev 7918)
@@ -1060,9 +1060,9 @@
     return 1 if $left =~ m/^cannot continue/o;
     if ($left =~ /^(?:SERVER|ME)/o) {
       # ME dropping articles into ...
-      return 1 if $left = ~/ dropping articles into /o;
+      return 1 if $left =~ / dropping articles into /o;
       # ME dropped ...
-      return 1 if $left = ~/ dropped /o;
+      return 1 if $left =~ / dropped /o;
       # ME internal bad data in checkpoint file
       return 1 if $left =~ m/ internal bad data in checkpoint/o;
       # ME two filenames for same article



More information about the inn-committers mailing list