Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates-src > by-pkgid > 1cd8af43b7ab382cf93eb5e1222833bb > files > 4

xpilot-ng-4.7.2-19.fc13.src.rpm

##########################################################################
##########################################################################

use Logwatch ':dates';

my $Debug = $ENV{'LOGWATCH_DEBUG'} || 0;

$SearchDate = TimeFilter('%d %b %H:%M:%S');

if ( $Debug > 5 ) {
   print STDERR "DEBUG: Inside ApplyXpilotDate...\n";
   print STDERR "DEBUG: Looking For: " . $SearchDate . "\n";
}

while (defined($ThisLine = <STDIN>)) {
   if ($ThisLine =~ m/^$SearchDate /o) {
      print $ThisLine;
   }
}

# vi: shiftwidth=3 syntax=perl tabstop=3 et