|
Majordomo-Users (November 1996) |
The following lines in shlock.pl is trouble:
open($FH_name, ">> $filename") ||
&warn("open of temp file $filename failed\n $!");
It causes an infinite stream of warnings to Majordomo owners from
majordomo process that lingers instead of dying like it's suppose to.
Why not?:
open($FH_name, ">> $filename") ||
die "open of temp file $filename failed\n $!";
--mikhail
Follow-Ups:
|