X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvalidate.pl;h=c6558723330431ce0192a05147ba3c23053f1e08;hb=4f87fa576f174a31e6d8fdb08cae76e644395db0;hp=07d49d40f6cffcd8497ca54bb1b10d98caae81be;hpb=62b28dd9eb2541847d5ce270cb7493fed626d1ef;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/validate.pl b/lib/validate.pl index 07d49d4..c655872 100644 --- a/lib/validate.pl +++ b/lib/validate.pl @@ -1,5 +1,3 @@ -;# $Header: validate.pl,v 3.0.1.1 90/08/09 04:03:10 lwall Locked $ - ;# The validate routine takes a single multiline string consisting of ;# lines containing a filename plus a file test to try on it. (The ;# file test may also be a 'cd', causing subsequent relative filenames @@ -91,11 +89,11 @@ sub valmess { $mess =~ s/ does not / should not / || $mess =~ s/ not / /; } - print stderr $mess,"\n"; + print STDERR $mess,"\n"; } else { $this =~ s/\$file/'$file'/g; - print stderr "Can't do $this.\n"; + print STDERR "Can't do $this.\n"; } if ($disposition eq 'die') { exit 1; } ++$warnings;