X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperldiag.pod;h=791b302d18aae6d91fc4cf854a4757c450f1f278;hb=5d3e98def4ec5753a5f78c106401b1351d752266;hp=76fb6aa57d5db9b02816cbc5283311fb930b0bff;hpb=1d662fb62e71ab3e37603febfa8212dd1e7e7f7e;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 76fb6aa..791b302 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1846,6 +1846,12 @@ effective uids or gids failed. to check the return value of your socket() call? See L. +=item lstat() on filehandle %s + +(W io) You tried to do an lstat on a filehandle. What did you mean +by that? lstat() makes sense only on filenames. (Perl did a fstat() +instead on the filehandle.) + =item Lvalue subs returning %s not implemented yet (F) Due to limitations in the current implementation, array and hash @@ -3954,6 +3960,12 @@ In code that currently says C you should remove AutoLoader from @ISA and change C to C. +=item Use of -l on filehandle %s + +(W io) A filehandle represents an opened file, and when you opened the file +it already went past any symlink you are presumably trying to look for. +The operation returned C. Use a filename instead. + =item Use of "package" with no arguments is deprecated (D deprecated) You used the C keyword without specifying a package @@ -4208,17 +4220,6 @@ supported. (F) The use of an external subroutine as a sort comparison is not yet supported. -=item You can't use C<-l> on a filehandle - -(F) A filehandle represents an opened file, and when you opened the file -it already went past any symlink you are presumably trying to look for. -Use a filename instead. - -=item You can't use lstat() on a filehandle - -(F) You tried to do an lstat on a filehandle. lstat() makes sense only -on filenames. - =item YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET! (F) And you probably never will, because you probably don't have the