Skip Menu |

This queue is for tickets about the MailTools CPAN distribution.

Report information
The Basics
Id: 1469
Status: resolved
Priority: 0/
Queue: MailTools

People
Owner: Nobody in particular
Requestors: chromatic [...] wgz.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.48
Fixed in: (no value)



Subject: Prevent an Uninitialized Value Warning in t/internet.t
When $ENV{LOGDIR} does not exist, the t/internet.t test throws a spurious uninitialized value warning. This patch fixes that. It should have no bearing on the success or failure of the test.
--- t/internet.t~ Fri Aug 2 11:13:43 2002 +++ t/internet.t Fri Aug 2 11:12:28 2002 @@ -2,6 +2,7 @@ require Mail::Internet; use Config; +$ENV{LOGNAME} ||= 'unknown'; print "1..3\n"; $|=1;