From f686eda24bb28a28118e126cea735012f2f94102 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Tue, 20 May 2003 10:08:32 +0000 Subject: [PATCH] minor change in the comments --- tools/convert_mbox.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/convert_mbox.pl b/tools/convert_mbox.pl index 16b5d9ee9..a898e8b03 100644 --- a/tools/convert_mbox.pl +++ b/tools/convert_mbox.pl @@ -6,8 +6,8 @@ # Fred Marton # # Note: Running this with the -w flag generates the following warnings: -# Scalar value @word[1] better written as $word[1] at /path/to/convert_mbox.pl line 44 -# Scalar value @word[0] better written as $word[1] at /path/to/convert_mbox.pl line 46 +# Scalar value @word[1] better written as $word[1] at /path/to/convert_mbox.pl line 54 +# Scalar value @word[0] better written as $word[1] at /path/to/convert_mbox.pl line 56 # Making these changes requires further changes in the script # that results in much longer run-times. # @@ -52,7 +52,7 @@ while ($line = ) { $year = $word[6]; # ignore the MAILER-DAEMON message from pine if (@word[1] ne "MAILER-DAEMON") { -# start a new file +# start a new file, assuming $year is > 1970 if (@word[0] eq "From" && $year > 1970) { $i++; close (OUT); -- 2.25.1