X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvalidate.pl;h=c6558723330431ce0192a05147ba3c23053f1e08;hb=6182169b72782336c6202161aa4cde16ac88296e;hp=2c8ee45c1d2b8089c59e67742608e377d42c286a;hpb=fe14fcc35f78a371a174a1d14256c2f35ae4262b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/validate.pl b/lib/validate.pl index 2c8ee45..c655872 100644 --- a/lib/validate.pl +++ b/lib/validate.pl @@ -1,5 +1,3 @@ -;# $Header: validate.pl,v 4.0 91/03/20 01:26:56 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;