Changeset 35712 in vbox for trunk/src/VBox/Main/src-helper-apps
- Timestamp:
- Jan 25, 2011 2:03:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-helper-apps/VBoxExtPackHelperApp.cpp
r35708 r35712 704 704 */ 705 705 RTDirCreate(pszBaseDir, 0755); 706 #ifndef RT_OS_WINDOWS 707 /* 708 * Because of umask, we have to apply the mode again. 709 */ 710 rc = RTPathSetMode(pszBaseDir, 0755); 711 if (RT_FAILURE(rc)) 712 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to set directory permissions on '%s': %Rrc", pszBaseDir, rc); 713 #else 714 /** @todo Ownership tricks on windows? */ 715 #endif 706 716 rc = RTDirCreate(szTmpPath, 0700); 707 717 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.