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 | d29091b2ca744b3ef4e1f693fd1703ea00b9bb79 (patch) | |
tree | 63dd88eb054d64c2e5792461f824b1d55c843412 /lib/File | |
parent | a4cef28c88e54337ccc832241664bee5289978e1 (diff) | |
download | perl-d29091b2ca744b3ef4e1f693fd1703ea00b9bb79.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(), |