From: Oliver Kurth Date: Tue, 5 Jun 2018 22:45:03 +0000 (-0700) Subject: Remove debug display of CPUID vendor string seen in VmCheck_IsVirtualWorld X-Git-Tag: stable-11.0.0~588 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e62247538d0fb334272a100e42cc248c6b9e1845;p=thirdparty%2Fopen-vm-tools.git Remove debug display of CPUID vendor string seen in VmCheck_IsVirtualWorld The "Debug" message containing vendor string returned by the CPUID instruction will appear on STDERR for stand-alone programs such as vmware-checkvm. --- diff --git a/open-vm-tools/lib/vmCheck/vmcheck.c b/open-vm-tools/lib/vmCheck/vmcheck.c index df23871fb..c82ea4986 100644 --- a/open-vm-tools/lib/vmCheck/vmcheck.c +++ b/open-vm-tools/lib/vmCheck/vmcheck.c @@ -281,8 +281,6 @@ VmCheck_IsVirtualWorld(void) * already detected that we are on a VMware hypervisor. See PR 1035346. */ hypervisorSig = Hostinfo_HypervisorCPUIDSig(); - Debug("%s: HypervisorCPUIDSig = \"%s\".\n", __FUNCTION__, - hypervisorSig == NULL ? "NULL" : hypervisorSig); if (hypervisorSig == NULL || Str_Strcmp(hypervisorSig, CPUID_VMWARE_HYPERVISOR_VENDOR_STRING) != 0) { if (hypervisorSig != NULL) {