From fdf08539a57c8c2446b02702e201e2d9e689ca6d Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Sun, 5 Nov 2000 18:26:44 +0000 Subject: [PATCH] Clarify this phrase git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@35318 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/filesystem.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/filesystem.xml b/functions/filesystem.xml index ddf8dd21e6..eb51cf0873 100644 --- a/functions/filesystem.xml +++ b/functions/filesystem.xml @@ -2421,10 +2421,10 @@ $tmpfname = tempnam ("/tmp", "FOO"); - This Functions behaviour changed in 4.0.3, the temporary file is also - created, this is due to the fact that before the returned string is not - guaranteed to continue to be a uniqe temporary filename, whereas with - the new behaviour it is. + This Function's behaviour changed in 4.0.3, the temporary file is also + created to avoid a race condition where the file might appear in the + filesystem between the time the string was generated and before the + the script gets around to creating the file.