diff options
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 76fb6aa57d..791b302d18 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<perlfunc/listen>. +=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<use AutoLoader; @ISA = qw(AutoLoader);> you should remove AutoLoader from @ISA and change C<use AutoLoader;> to C<use AutoLoader 'AUTOLOAD';>. +=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<undef>. Use a filename instead. + =item Use of "package" with no arguments is deprecated (D deprecated) You used the C<package> 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 |