]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Backout previous default "hgfs.packetSize.large" setting
authorOliver Kurth <okurth@vmware.com>
Mon, 9 Sep 2019 18:23:48 +0000 (11:23 -0700)
committerOliver Kurth <okurth@vmware.com>
Mon, 9 Sep 2019 18:23:48 +0000 (11:23 -0700)
The default value of config option "hgfs.packetSize.large" is now FALSE.

open-vm-tools/lib/include/hgfs.h

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