diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2023-03-31 10:22:37 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2023-03-31 10:22:37 +0000 |
commit | 4a78c919cc55bbcea26436ac8d4383803f9f784d (patch) | |
tree | 69b117dd1f36dfe8f09f1bf3a26aba2068014c55 /src/VBox/Main/src-client | |
parent | 30b69ce253ee890079dc63d3bf35ba516aa8f808 (diff) | |
download | VirtualBox-svn-4a78c919cc55bbcea26436ac8d4383803f9f784d.tar.gz |
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
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99253 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Main/src-client')
-rw-r--r-- | src/VBox/Main/src-client/GuestSessionImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/Main/src-client/GuestSessionImpl.cpp b/src/VBox/Main/src-client/GuestSessionImpl.cpp index 44e63a41a48..48511bb1d72 100644 --- a/src/VBox/Main/src-client/GuestSessionImpl.cpp +++ b/src/VBox/Main/src-client/GuestSessionImpl.cpp @@ -2107,7 +2107,7 @@ int GuestSession::i_fsObjQueryInfo(const Utf8Str &strPath, bool fFollowSymlinks, alock.release(); /* Drop lock before sending. */ - vrc = i_sendMessage(HOST_MSG_FS_QUERY_INFO, i, paParms); + vrc = i_sendMessage(HOST_MSG_FS_OBJ_QUERY_INFO, i, paParms); if (RT_SUCCESS(vrc)) { vrc = pEvent->Wait(30 * 1000); |