diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/perlbug.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/perlbug.PL b/utils/perlbug.PL index 8862a9447c..c015e25510 100644 --- a/utils/perlbug.PL +++ b/utils/perlbug.PL @@ -1134,7 +1134,7 @@ sub _send_message_mailsend { open(REP, "<$filename") or die "Couldn't open '$filename': $!\n"; while (<REP>) { print $fh $_ } close(REP) or die "Error closing $filename: $!"; - $fh->close; + $fh->close or die "Error sending mail: $!"; print "\nMessage sent.\n"; } |