From: Oliver Kurth Date: Tue, 27 Aug 2019 19:55:38 +0000 (-0700) Subject: Flipped the default value of config option "hgfs.packetSize.large" to TRUE X-Git-Tag: stable-11.1.0~256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a9fc303df675d17657ed4797a23608ec55dc631;p=thirdparty%2Fopen-vm-tools.git Flipped the default value of config option "hgfs.packetSize.large" to TRUE --- diff --git a/open-vm-tools/lib/include/hgfs.h b/open-vm-tools/lib/include/hgfs.h index ca97444fa..c697f7265 100644 --- a/open-vm-tools/lib/include/hgfs.h +++ b/open-vm-tools/lib/include/hgfs.h @@ -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 {