VirtualBox

Ignore:
Timestamp:
Mar 31, 2023 10:22:37 AM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
156636
Message:

Guest Control: Renamed HOST_MSG_FS_QUERY_INFO -> HOST_MSG_FS_QUERY_INFO, to not confuse file system object information (files, directories, ++) with actual file system information. Required for preparation of implementing querying guest file system information. bugref:10414

File:
1 edited

Legend:

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

    r99147 r99253  
    19751975
    19761976#ifdef VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS
    1977 static int vgsvcGstCtrlSessionHandleFsQueryInfo(const PVBOXSERVICECTRLSESSION pSession, PVBGLR3GUESTCTRLCMDCTX pHostCtx)
     1977static int vgsvcGstCtrlSessionHandleFsQueryObjInfo(const PVBOXSERVICECTRLSESSION pSession, PVBGLR3GUESTCTRLCMDCTX pHostCtx)
    19781978{
    19791979    AssertPtrReturn(pSession, VERR_INVALID_POINTER);
     
    19881988    RTFSOBJINFO        objInfoRuntime;
    19891989
    1990     int rc = VbglR3GuestCtrlFsGetQueryInfo(pHostCtx, szPath, sizeof(szPath), &enmAttrAdd, &fFlags);
     1990    int rc = VbglR3GuestCtrlFsGetQueryObjInfo(pHostCtx, szPath, sizeof(szPath), &enmAttrAdd, &fFlags);
    19911991    if (RT_SUCCESS(rc))
    19921992    {
     
    22322232
    22332233#ifdef VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS
    2234         case HOST_MSG_FS_QUERY_INFO:
     2234        case HOST_MSG_FS_OBJ_QUERY_INFO:
    22352235            if (fImpersonated)
    2236                 rc = vgsvcGstCtrlSessionHandleFsQueryInfo(pSession, pHostCtx);
     2236                rc = vgsvcGstCtrlSessionHandleFsQueryObjInfo(pSession, pHostCtx);
    22372237            break;
    22382238
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