0644 isn't bogus ...

This commit is contained in:
Glenn Maynard
2005-05-31 21:38:39 +00:00
parent b385a5aee9
commit 1520c4d2cf
@@ -152,7 +152,7 @@ bool PathReady( CString path )
// Try to write a file.
const CString sFile = path + "temp";
int fd = DoOpen( sFile, O_WRONLY|O_CREAT|O_TRUNC, 0644 ); //last arg is a bogus one
int fd = DoOpen( sFile, O_WRONLY|O_CREAT|O_TRUNC, 0644 );
if( fd == -1 )
return false;