diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-02-01 16:12:50 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-01 14:44:39 +0000 |
commit | 3db621fff0190e634928562c9f2fd308ab651d3c (patch) | |
tree | 483146c2f5268e75f8a42057eb89103fdfed5420 /pod | |
parent | fe69a90c3f7231026ad863ff8acde1f0e0b750c3 (diff) | |
download | perl-3db621fff0190e634928562c9f2fd308ab651d3c.tar.gz |
make "lstat FH" croak
Message-ID: <20020201151250.A738@rafael>
p4raw-id: //depot/perl@14513
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 56b6950e9f..76fb6aa57d 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1846,12 +1846,6 @@ 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 @@ -4220,6 +4214,11 @@ supported. 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 |