VirtualBox

Changeset 39612 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Dec 14, 2011 2:19:55 PM (13 years ago)
Author:
vboxsync
Message:

IPRT/*: add _NO_SYMLINKS flags to certain functions

Location:
trunk/src/VBox/Additions/common/VBoxService
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp

    r33468 r39612  
    161161                if (pszPathTmp)
    162162                {
    163                     rc = RTDirOpenFiltered(&pDirCurr, pszPathTmp, RTDIRFILTER_WINNT);
     163                    rc = RTDirOpenFiltered(&pDirCurr, pszPathTmp, RTDIRFILTER_WINNT, 0);
    164164                    RTStrFree(pszPathTmp);
    165165                }
     
    248248
    249249        /* Open the directory */
    250         rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPath, RTDIRFILTER_WINNT);
     250        rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPath, RTDIRFILTER_WINNT, 0);
    251251        if (RT_SUCCESS(rc))
    252252        {
     
    319319
    320320                        /* Open the directory */
    321                         rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPathDir, RTDIRFILTER_WINNT);
     321                        rc = RTDirOpenFiltered(&pAcpiCpuPathLvl->pDir, pszPathDir, RTDIRFILTER_WINNT, 0);
    322322                        if (RT_FAILURE(rc))
    323323                            break;
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp

    r39515 r39612  
    989989                    rc = RTDirCreateFullPath(ValueUnion.psz, fDirMode);
    990990                else
    991                     rc = RTDirCreate(ValueUnion.psz, fDirMode);
     991                    rc = RTDirCreate(ValueUnion.psz, fDirMode, 0);
    992992                if (RT_FAILURE(rc))
    993993                    return RTMsgErrorExit(RTEXITCODE_FAILURE, "Could not create directory '%s': %Rra\n",
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette