diff options
author | Peter Palfrader <peter@palfrader.org> | 2004-04-24 12:06:41 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2004-04-24 12:06:41 +0000 |
commit | 82c0bb931633d67a7e60bddb756264edcd4620b6 (patch) | |
tree | b810dfe5ae097f5ed0a8f69fa88cb1e77f21198c /Echolot/Conf.pm | |
parent | c81ff6b6a0c58e927c61d59b03f142f400e31ef4 (diff) |
And fix a few syntax errors
Diffstat (limited to 'Echolot/Conf.pm')
-rw-r--r-- | Echolot/Conf.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Echolot/Conf.pm b/Echolot/Conf.pm index 83f53cc..53340eb 100644 --- a/Echolot/Conf.pm +++ b/Echolot/Conf.pm @@ -317,10 +317,10 @@ sub parse_mix_key($$$) { my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime(); my $today = sprintf("%04d-%02d-%02d", $year+1900, $mon+1, $mday); (defined $mixmasters{$keyid}->{'created'} && ($today lt $mixmasters{$keyid}->{'created'})) and - Echolot::Log::info("Mixmaster key for $remailer_address created in the future ($today < $created)."), + Echolot::Log::info("Mixmaster key for $remailer_address created in the future ($today < ".$mixmasters{$keyid}->{'created'}.")."), next; (defined $mixmasters{$keyid}->{'expires'} && ($mixmasters{$keyid}->{'expires'} lt $today)) and - Echolot::Log::info("Mixmaster key for $remailer_address expired ($expires < $today)."), + Echolot::Log::info("Mixmaster key for $remailer_address expired (".$mixmasters{$keyid}->{'expires'}." < $today)."), next; if ($remailer->{'address'} ne $remailer_address) { |