X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvalidate.pl;h=c6558723330431ce0192a05147ba3c23053f1e08;hb=004caa160f94253de79aa75f9b412f94823dcb96;hp=21d0505ad4df317239dee2f513b7825adba9bb9f;hpb=79072805bf63abe5b5978b5928ab00d360ea3e7f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/validate.pl b/lib/validate.pl index 21d0505..c655872 100644 --- a/lib/validate.pl +++ b/lib/validate.pl @@ -1,5 +1,3 @@ -;# $RCSfile: validate.pl,v $$Revision: 4.1 $$Date: 92/08/07 18:24:19 $ - ;# 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;