INN commit: branches/2.4 (3 files)

INN Commit Russ_Allbery at isc.org
Tue Jun 24 06:49:21 UTC 2008


    Date: Monday, June 23, 2008 @ 23:49:20
  Author: iulius
Revision: 7920

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

Modified:
  branches/2.4/NEWS
  branches/2.4/doc/pod/news.pod
  branches/2.4/scripts/innreport_inn.pm

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

Modified: NEWS
===================================================================
--- NEWS	2008-06-24 06:48:19 UTC (rev 7919)
+++ NEWS	2008-06-24 06:49:20 UTC (rev 7920)
@@ -31,7 +31,7 @@
       add missing methods to it.
 
     * Fixed a long-standing bug in innreport which prevented it from
-      correctly reporting nnrpd log messages.
+      correctly reporting nnrpd and innfeed log messages.
 
     * Fixed a compilation problem on some platforms because of AF_INET6
       which was not inside a HAVE_INET6 block in innfeed.

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod	2008-06-24 06:48:19 UTC (rev 7919)
+++ doc/pod/news.pod	2008-06-24 06:49:20 UTC (rev 7920)
@@ -43,7 +43,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:48:19 UTC (rev 7919)
+++ scripts/innreport_inn.pm	2008-06-24 06:49:20 UTC (rev 7920)
@@ -793,9 +793,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