INN commit: trunk/scripts (innreport_inn.pm)

INN Commit Russ_Allbery at isc.org
Sun Aug 3 07:50:04 UTC 2008


    Date: Sunday, August 3, 2008 @ 00:50:03
  Author: iulius
Revision: 7946

Change '\ ' to '\s' in the two other regexps for timers.

Modified:
  trunk/scripts/innreport_inn.pm

------------------+
 innreport_inn.pm |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: innreport_inn.pm
===================================================================
--- innreport_inn.pm	2008-08-03 07:47:10 UTC (rev 7945)
+++ innreport_inn.pm	2008-08-03 07:50:03 UTC (rev 7946)
@@ -984,8 +984,8 @@
     # ME time X nnnn X(X) [...]
     return 1 if $left =~ m/backlogstats/;
     if ($left =~ m/^\S+\s+                         # ME
-                   time\ (\d+)\s+                  # time
-                   ((?:\S+\ \d+\(\d+\)\s*)+)       # timer values
+                   time\s(\d+)\s+                  # time
+                   ((?:\S+\s\d+\(\d+\)\s*)+)       # timer values
                    $/ox) {
       $innfeed_time_times += $1;
       my $timers = $2;
@@ -1731,8 +1731,8 @@
     # The exact timers change from various versions of INN, so try to deal
     # with this in a general fashion.
     if ($left =~ m/^\S+\s+                         # ME
-	           time\ (\d+)\s+                  # time
-                   ((?:\S+\ \d+\(\d+\)\s*)+)       # timer values
+	           time\s(\d+)\s+                  # time
+                   ((?:\S+\s\d+\(\d+\)\s*)+)       # timer values
                    $/ox) {
       $nnrpd_time_times += $1;
       my $timers = $2;



More information about the inn-committers mailing list