Changeset 39612 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Dec 14, 2011 2:19:55 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp
r33468 r39612 161 161 if (pszPathTmp) 162 162 { 163 rc = RTDirOpenFiltered(&pDirCurr, pszPathTmp, RTDIRFILTER_WINNT );163 rc = RTDirOpenFiltered(&pDirCurr, pszPathTmp, RTDIRFILTER_WINNT, 0); 164 164 RTStrFree(pszPathTmp); 165 165 } … … 248 248 249 249 /* Open the directory */ 250 rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPath, RTDIRFILTER_WINNT );250 rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPath, RTDIRFILTER_WINNT, 0); 251 251 if (RT_SUCCESS(rc)) 252 252 { … … 319 319 320 320 /* Open the directory */ 321 rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPathDir, RTDIRFILTER_WINNT );321 rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPathDir, RTDIRFILTER_WINNT, 0); 322 322 if (RT_FAILURE(rc)) 323 323 break; -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r39515 r39612 989 989 rc = RTDirCreateFullPath(ValueUnion.psz, fDirMode); 990 990 else 991 rc = RTDirCreate(ValueUnion.psz, fDirMode );991 rc = RTDirCreate(ValueUnion.psz, fDirMode, 0); 992 992 if (RT_FAILURE(rc)) 993 993 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Could not create directory '%s': %Rra\n",
Note:
See TracChangeset
for help on using the changeset viewer.