]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for the fix for the umask fix in wxTempFile
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Apr 1999 21:22:40 +0000 (21:22 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Apr 1999 21:22:40 +0000 (21:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/file.cpp

index f563a5cd3db44264b56468ca01dca14f8ae169c8..b29367e38965c68eee77de20a3a4f7f70217ada9 100644 (file)
@@ -523,11 +523,11 @@ bool wxTempFile::Open(const wxString& strName)
     {
         // file probably didn't exist, just create with default mode _using_
         // user's umask (new files creation should respet umask)
-        changedUmask = TRUE;
+        changedUmask = FALSE;
     }
 #endif // Unix
 
-    bool ok =  m_file.Open(m_strTemp, wxFile::write, access);
+    bool ok = m_file.Open(m_strTemp, wxFile::write, access);
 
 #ifdef __UNIX__
     if ( changedUmask )