In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/bd93adf583f3c53d76f65b51f67388fdbda28f40?hp=31587b3e6fc5a715bd8d06712b4e312147fde836>
- Log ----------------------------------------------------------------- commit bd93adf583f3c53d76f65b51f67388fdbda28f40 Author: Dagfinn Ilmari Mannsåker <[email protected]> Date: Wed Jan 18 12:39:28 2017 +0000 Remove obsolete (PL_)statcache mentions in comments cando() has not used PL_statcache since Perl 3 (commit a687059cbaf) ----------------------------------------------------------------------- Summary of changes: doio.c | 2 +- vms/vms.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doio.c b/doio.c index 67966b5435..8ca9c4b4f4 100644 --- a/doio.c +++ b/doio.c @@ -2080,7 +2080,7 @@ nothing in the core. #undef APPLY_TAINT_PROPER } -/* Do the permissions allow some operation? Assumes statcache already set. */ +/* Do the permissions in *statbufp allow some operation? */ #ifndef VMS /* VMS' cando is in vms.c */ bool Perl_cando(pTHX_ Mode_t mode, bool effective, const Stat_t *statbufp) diff --git a/vms/vms.c b/vms/vms.c index efe7f4554c..71beaf73a9 100644 --- a/vms/vms.c +++ b/vms/vms.c @@ -12031,7 +12031,7 @@ Perl_cando_by_name_int(pTHX_ I32 bit, bool effective, const char *fname, int opt } -/* Do the permissions allow some operation? Assumes PL_statcache already set. */ +/* Do the permissions in *statbufp allow some operation? */ /* Do this via $Check_Access on VMS, since the CRTL stat() returns only a * subset of the applicable information. */ -- Perl5 Master Repository
