From 56ea016a6fbe733d25d474165ac0222d583e30ed Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 29 Mar 2008 20:01:30 -0700 Subject: [PATCH] fix two braindead syntax errors --- scripts/spamscan.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/spamscan.in b/scripts/spamscan.in index 5c79c30d..c58fe030 100755 --- a/scripts/spamscan.in +++ b/scripts/spamscan.in @@ -134,13 +134,13 @@ getid: for (;;) { } print $sain "$id\n$nf\n"; lprint "{$mytid} $id is $nf\n"; - my $keys = <$saout> + my $keys = <$saout>; unless (defined $keys) { lprint "{$mytid} Could not get keys: $!\n"; last pp; } chomp $keys; - my $messageid = <$saout> + my $messageid = <$saout>; unless (defined($messageid)) { lprint "{$mytid} Could not read messageid: $!\n"; last pp; -- 2.39.5