On Tue, 5 Jun 2001, Gary Luther wrote:

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

This doesn't mean a darn thing to your program, since you aren't printing
the string or doing anything else with it.  I would change it to:

open(CN, ">$cnum") or die "Can't open $cnum: $!";

-- Brett

Brett W. McCoy
Software Engineer
Broadsoft, Inc.
240-364-5225
[EMAIL PROTECTED]

Reply via email to