Changeset 39926 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jan 31, 2012 8:45:46 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r39720 r39926 2662 2662 if (!RTDirExists(dir.c_str())) 2663 2663 { 2664 int vrc = RTDirCreateFullPath(dir.c_str(), 07 77);2664 int vrc = RTDirCreateFullPath(dir.c_str(), 0700); 2665 2665 if (RT_FAILURE(vrc)) 2666 2666 { … … 6005 6005 Assert(logDir.length()); 6006 6006 if (!RTDirExists(logDir.c_str())) 6007 RTDirCreateFullPath(logDir.c_str(), 07 77);6007 RTDirCreateFullPath(logDir.c_str(), 0700); 6008 6008 6009 6009 Utf8Str logFile = Utf8StrFmt("%s%cVBox.log", … … 6497 6497 * Try create the directory. 6498 6498 */ 6499 vrc = RTDirCreateFullPath(pszDumpDir, 07 77);6499 vrc = RTDirCreateFullPath(pszDumpDir, 0700); 6500 6500 if (RT_FAILURE(vrc)) 6501 6501 throw setError(E_FAIL, "Failed to setup CoreDumper. Couldn't create dump directory '%s' (%Rrc)\n", pszDumpDir, vrc);
Note:
See TracChangeset
for help on using the changeset viewer.