summaryrefslogtreecommitdiff
path: root/Echolot/Thesaurus.pm
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-07-15 20:19:12 +0000
committerPeter Palfrader <peter@palfrader.org>2002-07-15 20:19:12 +0000
commitce7cabe5f8b02bfe6ad9dd400020e3ebd9a67578 (patch)
tree32cfd4fab28e925ec3fdf25e05f9e1b530b1f6a4 /Echolot/Thesaurus.pm
parent8cc55d247f531756aad2822bb90f601fae294a31 (diff)
Fix a bug reported by Bill O'Hanlon
Diffstat (limited to 'Echolot/Thesaurus.pm')
-rw-r--r--Echolot/Thesaurus.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Echolot/Thesaurus.pm b/Echolot/Thesaurus.pm
index 230b322..b7d4a1b 100644
--- a/Echolot/Thesaurus.pm
+++ b/Echolot/Thesaurus.pm
@@ -1,7 +1,7 @@
package Echolot::Thesaurus;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: Thesaurus.pm,v 1.7 2002/07/13 19:59:16 weasel Exp $
+# $Id: Thesaurus.pm,v 1.8 2002/07/15 20:18:29 weasel Exp $
#
=pod
@@ -61,8 +61,8 @@ sub build_thesaurus() {
my ($id, $what) = $filename =~ /^(\d+)\.(adminkey|conf|help|key|stats)$/;
next unless (defined $id && defined $what);
- my $remailer = Echolot::Globals::get()->{'storage'}->get_address_by_id($id);
- next return 0 unless defined $remailer;
+ my $remailer = Echolot::Globals::get()->{'storage'}->get_address_by_id($id);
+ next unless defined $remailer;
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)