- Timestamp:
- Oct 14, 2013 2:31:01 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89887
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp
r49077 r49080 220 220 if (!RTDirExists(szMapPath)) 221 221 { 222 rc = RTDirCreate(szMapPath, 0755, 0/*fFlags*/);222 rc = RTDirCreate(szMapPath, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL); 223 223 if (RT_FAILURE(rc)) 224 224 return RTMsgErrorRc(rc, "RTDirCreate failed on '%s' (UUID map path): %Rrc", szMapPath, rc); … … 323 323 if (!RTDirExists(szDstPath)) 324 324 { 325 rc = RTDirCreate(szDstPath, 0755, 0 /*fFlags*/);325 rc = RTDirCreate(szDstPath, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL); 326 326 if (RT_FAILURE(rc)) 327 327 return RTMsgErrorRc(rc, "Error creating '%s': %Rrc", szDstPath, rc); … … 334 334 if (!RTDirExists(szDstPath)) 335 335 { 336 rc = RTDirCreate(szDstPath, 0755, 0 /*fFlags*/);336 rc = RTDirCreate(szDstPath, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL); 337 337 if (RT_FAILURE(rc)) 338 338 return RTMsgErrorRc(rc, "Error creating '%s': %Rrc", szDstPath, rc); … … 1159 1159 if (!RTPathExists(pszCache)) 1160 1160 { 1161 rc = RTDirCreate(pszCache, 0755, 0 /*fFlags*/);1161 rc = RTDirCreate(pszCache, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL); 1162 1162 if (RT_FAILURE(rc)) 1163 1163 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Error creating cache directory '%s': %Rrc", pszCache, rc);
Note:
See TracChangeset
for help on using the changeset viewer.