- Timestamp:
- Mar 31, 2023 1:40:23 PM (22 months ago)
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibGuestCtrl.cpp
r99256 r99257 2661 2661 #ifdef VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS 2662 2662 /** 2663 * Replies to a HOST_MSG_FS_ QUERY_INFO message, extended version.2663 * Replies to a HOST_MSG_FS_OBJ_QUERY_INFO message, extended version. 2664 2664 * 2665 2665 * @returns VBox status code. … … 2672 2672 * whereas the first group always is the primary group. 2673 2673 */ 2674 VBGLR3DECL(int) VbglR3GuestCtrlFs CbQueryInfoEx(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, PGSTCTLFSOBJINFO pFsObjInfo,2675 const char *pszUser, const char *pszGroups)2674 VBGLR3DECL(int) VbglR3GuestCtrlFsObjCbQueryInfoEx(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, PGSTCTLFSOBJINFO pFsObjInfo, 2675 const char *pszUser, const char *pszGroups) 2676 2676 { 2677 2677 AssertPtrReturn(pCtx, VERR_INVALID_POINTER); … … 2695 2695 2696 2696 /** 2697 * Replies to a HOST_MSG_FS_ QUERY_INFO message.2697 * Replies to a HOST_MSG_FS_OBJ_QUERY_INFO message. 2698 2698 * 2699 2699 * @returns VBox status code. … … 2702 2702 * @param pFsObjInfo Guest file system object information to send. 2703 2703 */ 2704 VBGLR3DECL(int) VbglR3GuestCtrlFs CbQueryInfo(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, PGSTCTLFSOBJINFO pFsObjInfo)2704 VBGLR3DECL(int) VbglR3GuestCtrlFsObjCbQueryInfo(PVBGLR3GUESTCTRLCMDCTX pCtx, uint32_t uRc, PGSTCTLFSOBJINFO pFsObjInfo) 2705 2705 { 2706 2706 char szIgnored[1] = { 0 }; 2707 return VbglR3GuestCtrlFs CbQueryInfoEx(pCtx, uRc, pFsObjInfo, szIgnored /* pszUser */, szIgnored /* pszGroups */);2707 return VbglR3GuestCtrlFsObjCbQueryInfoEx(pCtx, uRc, pFsObjInfo, szIgnored /* pszUser */, szIgnored /* pszGroups */); 2708 2708 } 2709 2709 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r99256 r99257 2050 2050 const char *pszGroup = VGSvcIdCacheGetGidName(&pSession->GidCache, pObjInfo->Attr.u.Unix.gid, szPath, NULL /* pszRelativeTo */); 2051 2051 2052 int rc2 = VbglR3GuestCtrlFs CbQueryInfoEx(pHostCtx, rc, pObjInfo, pszUser, pszGroup);2052 int rc2 = VbglR3GuestCtrlFsObjCbQueryInfoEx(pHostCtx, rc, pObjInfo, pszUser, pszGroup); 2053 2053 if (RT_FAILURE(rc2)) 2054 2054 {
Note:
See TracChangeset
for help on using the changeset viewer.