diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-30 22:29:34 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-30 22:29:34 +0000 |
commit | 781948c1583a5f5ebfc81f555afb2130e6f6ec63 (patch) | |
tree | 63dd88eb054d64c2e5792461f824b1d55c843412 /lib/File | |
parent | be7ddd5d2d1ac50e54898aa4f400140ded3a1297 (diff) | |
download | perl-781948c1583a5f5ebfc81f555afb2130e6f6ec63.tar.gz |
Retract the dummy test, skip the security tests (instead of failing),
explain what the warnings mean.
p4raw-id: //depot/perl@6928
Diffstat (limited to 'lib/File')
-rw-r--r-- | lib/File/Temp.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/File/Temp.pm b/lib/File/Temp.pm index 6548018961..16efd5b36a 100644 --- a/lib/File/Temp.pm +++ b/lib/File/Temp.pm @@ -95,12 +95,12 @@ filehandle of a temporary file. The tempdir() function can be used to create a temporary directory. The security aspect of temporary file creation is emphasized such that -a filehandle and filename are returned together. This helps guarantee that -a race condition can not occur where the temporary file is created by another process -between checking for the existence of the file and its -opening. Additional security levels are provided to check, for -example, that the sticky bit is set on world writable directories. -See L<"safe_level"> for more information. +a filehandle and filename are returned together. This helps guarantee +that a race condition can not occur where the temporary file is +created by another process between checking for the existence of the +file and its opening. Additional security levels are provided to +check, for example, that the sticky bit is set on world writable +directories. See L<"safe_level"> for more information. For compatibility with popular C library functions, Perl implementations of the mkstemp() family of functions are provided. These are, mkstemp(), |