diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-07-28 22:10:47 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-07-29 10:17:05 -0400 |
commit | 446b89af54d4dd848d5432e339a1456502eaee01 (patch) | |
tree | 619bc08e5d6efddde31133ac6c60ba76a30c63a8 /t | |
parent | 26065e6c9b1e28a59935bef1cddb98278a829253 (diff) | |
download | perl-446b89af54d4dd848d5432e339a1456502eaee01.tar.gz |
Mention sv_gets as the Perl-ish fgets-ish API.
Diffstat (limited to 't')
-rw-r--r-- | t/porting/libperl.t | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/porting/libperl.t b/t/porting/libperl.t index 31bd4efff9..f62b80d188 100644 --- a/t/porting/libperl.t +++ b/t/porting/libperl.t @@ -468,10 +468,11 @@ for my $symbol (sort keys %expected) { } # There are certain symbols we expect NOT to see. - +# # gets is horribly unsafe. # -# fgets should not be used (Perl has its own API), even without perlio. +# fgets should not be used (Perl has its own API, sv_gets), +# even without perlio. # # tmpfile is unsafe. # |