diff options
author | msmith <msmith@FreeBSD.org> | 1999-02-17 20:59:45 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1999-02-17 20:59:45 +0000 |
commit | 706fc5d93cfc4c50c4fbed5569e5c0bcda961405 (patch) | |
tree | 32deacd81340e302d7034238ab11e29852722b98 | |
parent | 9b738a43f6001567a765f72e97546cd132c616d2 (diff) | |
download | FreeBSD-ports-706fc5d93cfc4c50c4fbed5569e5c0bcda961405.zip FreeBSD-ports-706fc5d93cfc4c50c4fbed5569e5c0bcda961405.tar.gz |
Add missing paren.
-rwxr-xr-x | CVSROOT/log_accum.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index c6fd645..e8647c0 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -1,6 +1,6 @@ #!/usr/local/bin/perl # -# $Id: log_accum.pl,v 1.30 1999/02/16 13:39:30 peter Exp $ +# $Id: log_accum.pl,v 1.31 1999/02/17 17:14:40 peter Exp $ # # Perl filter to handle the log messages from the checkin of files in # a directory. This script will group the lists of files by log @@ -388,7 +388,7 @@ sub mail_notification { if ($subject ne "") { print(MAIL $subject, "\n"); } - print MAIL "Precedence: bulk\n"); + print (MAIL "Precedence: bulk\n"); print (MAIL "\n"); print(MAIL join("\n", @text)); |