Changeset 39612 in vbox for trunk/src/VBox/Main
- Timestamp:
- Dec 14, 2011 2:19:55 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75392
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-helper-apps/VBoxExtPackHelperApp.cpp
r38636 r39612 356 356 ObjInfo.Attr.fMode &= ~(RTFS_UNIX_IWOTH | RTFS_UNIX_IWGRP); 357 357 358 rc = RTDirCreate(pszDstDirName, ObjInfo.Attr.fMode );358 rc = RTDirCreate(pszDstDirName, ObjInfo.Attr.fMode, 0); 359 359 if (RT_FAILURE(rc)) 360 360 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to create directory '%s': %Rrc", pszDstDirName, rc); … … 703 703 * If all checks out correctly, rename it to the final directory. 704 704 */ 705 RTDirCreate(pszBaseDir, 0755 );705 RTDirCreate(pszBaseDir, 0755, 0); 706 706 #ifndef RT_OS_WINDOWS 707 707 /* … … 714 714 /** @todo Ownership tricks on windows? */ 715 715 #endif 716 rc = RTDirCreate(szTmpPath, 0700 );716 rc = RTDirCreate(szTmpPath, 0700, 0); 717 717 if (RT_FAILURE(rc)) 718 718 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to create temporary directory: %Rrc ('%s')", rc, szTmpPath);
Note:
See TracChangeset
for help on using the changeset viewer.