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]
- Probably a "no-brainer" - the last two messages. Gary Luther
- Re: Probably a "no-brainer" - the last two ... Chas Owens
- Re: Probably a "no-brainer" - the last two ... Brett W. McCoy
- Re: Probably a "no-brainer" - the last two ... Dan Brown
- Re: Probably a "no-brainer" - the last two ... Rachel Coleman
- Re: Probably a "no-brainer" - the last two ... Timothy Kimball