Changeset 606

Show
Ignore:
Timestamp:
05/01/05 17:44:02 (7 years ago)
Author:
ilmari
Message:

Fixed typo in generic/loggrep breaking implicit labeling.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    • Property cvs2svn:cvs-rev changed from 1.253 to 1.254
    r605 r606  
    88  * Plugins: generic/sendmail_mail{stats,traffic} updated. 
    99  * Plugins: Made generic/samba more portable (fixes by Nicolas Stransky). 
     10  * Plugins: Fixed typo in generic/loggrep breaking implicit labeling. 
    1011 
    1112munin (1.1.9) 
  • trunk/node/node.d/loggrep.in

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r559 r606  
    3737# 
    3838# $Log$ 
     39# Revision 1.5  2005/01/05 16:44:02  ilmari 
     40# Fixed typo in generic/loggrep breaking implicit labeling. 
     41# 
    3942# Revision 1.4  2004/12/10 18:51:43  jimmyo 
    4043# linux/apt* has been forced to LANG=C, to get predictable output. 
     
    6568if (exists $ENV{'regex'}) { 
    6669    $regex{'count'}{'regex'} = qr/$ENV{'regex'}/; 
    67     $regex{'count'}{'label'} = $ENV{'label'} || $ENV{'REGEX'}; 
     70    $regex{'count'}{'label'} = $ENV{'label'} || $ENV{'regex'}; 
    6871    $regex{'count'}{'value'} = 0; 
    6972}