diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-14 07:34:45 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-14 07:34:45 +0000 |
commit | eec2d3df379716e72d6e7a8316fcb65b89fb13eb (patch) | |
tree | ced15250c8f4f5103a1c6de3495f4eb3115c159b /pod/perldiag.pod | |
parent | 0f5feb8dcd2bdb835f78952aa842c128d6c5b2aa (diff) | |
download | perl-eec2d3df379716e72d6e7a8316fcb65b89fb13eb.tar.gz |
merge changes#1423,1465 from maintbranch; checkin two missed files
from earlier changes#1461,1478
p4raw-link: @1478 on //depot/perl: 1d84e8dfc14d5303f4e9e567bd263f6b4d88e584
p4raw-link: @1465 on //depot/maint-5.004/perl: 5c79ff06c1b2e0ce9610857baca341a322e96624
p4raw-link: @1461 on //depot/perl: 8782bef2aa2ca158fdd0d7436e68ae3ac2b01ff7
p4raw-link: @1423 on //depot/maint-5.004/perl: 9b114077a050865568261ebf91069aa7983019c3
p4raw-id: //depot/perl@1488
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index e1967840bd..26289b7f7c 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -2609,8 +2609,13 @@ certain type. Arrays must be @NAME or C<@{EXPR}>. Hashes must be =item umask: argument is missing initial 0 -(W) A umask of 222 is incorrect. It should be 0222, because octal literals -always start with 0 in Perl, as in C. +(W) A umask of 222 is incorrect. It should be 0222, because octal +literals always start with 0 in Perl, as in C. + +=item umask not implemented + +(F) Your machine doesn't implement the umask function and you tried +to use it to restrict permissions for yourself (EXPR & 0700). =item Unable to create sub named "%s" |