Changeset 99253 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Mar 31, 2023 10:22:37 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156636
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r99147 r99253 1975 1975 1976 1976 #ifdef VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS 1977 static int vgsvcGstCtrlSessionHandleFsQuery Info(const PVBOXSERVICECTRLSESSION pSession, PVBGLR3GUESTCTRLCMDCTX pHostCtx)1977 static int vgsvcGstCtrlSessionHandleFsQueryObjInfo(const PVBOXSERVICECTRLSESSION pSession, PVBGLR3GUESTCTRLCMDCTX pHostCtx) 1978 1978 { 1979 1979 AssertPtrReturn(pSession, VERR_INVALID_POINTER); … … 1988 1988 RTFSOBJINFO objInfoRuntime; 1989 1989 1990 int rc = VbglR3GuestCtrlFsGetQuery Info(pHostCtx, szPath, sizeof(szPath), &enmAttrAdd, &fFlags);1990 int rc = VbglR3GuestCtrlFsGetQueryObjInfo(pHostCtx, szPath, sizeof(szPath), &enmAttrAdd, &fFlags); 1991 1991 if (RT_SUCCESS(rc)) 1992 1992 { … … 2232 2232 2233 2233 #ifdef VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS 2234 case HOST_MSG_FS_ QUERY_INFO:2234 case HOST_MSG_FS_OBJ_QUERY_INFO: 2235 2235 if (fImpersonated) 2236 rc = vgsvcGstCtrlSessionHandleFsQuery Info(pSession, pHostCtx);2236 rc = vgsvcGstCtrlSessionHandleFsQueryObjInfo(pSession, pHostCtx); 2237 2237 break; 2238 2238
Note:
See TracChangeset
for help on using the changeset viewer.