]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Flipped the default value of config option "hgfs.packetSize.large" to TRUE
authorOliver Kurth <okurth@vmware.com>
Tue, 27 Aug 2019 19:55:38 +0000 (12:55 -0700)
committerOliver Kurth <okurth@vmware.com>
Tue, 27 Aug 2019 19:55:38 +0000 (12:55 -0700)
open-vm-tools/lib/include/hgfs.h

index ca97444fac75b06a83ae9fbacefcb79dd8c7aed6..c697f72657987a5e2207d56c29eeaa91e2906b8c 100644 (file)
@@ -134,9 +134,9 @@ static INLINE size_t HgfsLargeIoMax(Bool useLegacy) // IN
       return gHgfsLargeIoMax;
    }
 #ifdef VMX86_TOOLS
-   if (!RpcVMX_ConfigGetBool(FALSE, "hgfs.packetSize.large")) {
+   if (!RpcVMX_ConfigGetBool(TRUE, "hgfs.packetSize.large")) {
 #else
-   if (!Config_GetBool(FALSE, "hgfs.packetSize.large")) {
+   if (!Config_GetBool(TRUE, "hgfs.packetSize.large")) {
 #endif
       gHgfsLargeIoMax = HGFS_LEGACY_LARGE_IO_MAX;
    } else {
@@ -175,9 +175,9 @@ static INLINE size_t HgfsLargePacketMax(Bool useLegacy) // IN
       return gHgfsLargePacketMax;
    }
 #ifdef VMX86_TOOLS
-   if (!RpcVMX_ConfigGetBool(FALSE, "hgfs.packetSize.large")) {
+   if (!RpcVMX_ConfigGetBool(TRUE, "hgfs.packetSize.large")) {
 #else
-   if (!Config_GetBool(FALSE, "hgfs.packetSize.large")) {
+   if (!Config_GetBool(TRUE, "hgfs.packetSize.large")) {
 #endif
       gHgfsLargePacketMax = HGFS_LEGACY_LARGE_PACKET_MAX;
    } else {