Gary Luther wrote:

:  56    open(CD, ">$cdate") || "Can't open $cdate: $!";
:  60    open(CN, ">$cnum") || "Can't open $cnum: $!";

I think you mean

open(CD, ">$cdate") || die "Can't open $cdate: $!"

Without the die(), you have a string just sitting there, being useless.

-- tdk

Reply via email to