Changeset 3837

Show
Ignore:
Timestamp:
07/27/10 19:42:30 (2 years ago)
Author:
ligne
Message:

tidy the comments.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/node/lib/Munin/Node/SpoolReader.pm

    r3836 r3837  
    6969    my $epoch; 
    7070 
     71    # wind through to the start of the first results after $timestamp 
    7172    while (<$fh>) { 
    72         # Parse the line for the current epoch 
    7373        ($epoch) = m/^timestamp (\d+)/ or next; 
    74  
    7574        logger("Timestamp: $epoch") if $config->{DEBUG}; 
    76  
    77         # Only continue if the line epoch is later than the asked one 
    7875        last if ($epoch > $timestamp); 
    7976    }