From: John Wolfe Date: Tue, 21 Jul 2020 18:53:01 +0000 (-0700) Subject: Remove unnecessary FreeBSD strings X-Git-Tag: stable-11.2.0~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=511b4a8d729adef45964aceb8b3f1a7ef285c132;p=thirdparty%2Fopen-vm-tools.git Remove unnecessary FreeBSD strings --- diff --git a/open-vm-tools/lib/misc/hostinfoPosix.c b/open-vm-tools/lib/misc/hostinfoPosix.c index 7be1ab7e8..eb6bb51d0 100644 --- a/open-vm-tools/lib/misc/hostinfoPosix.c +++ b/open-vm-tools/lib/misc/hostinfoPosix.c @@ -1783,18 +1783,18 @@ HostinfoBSD(struct utsname *buf) // IN: break; case 11: - Str_Strcpy(distroShort, STR_OS_FREEBSD11, sizeof distroShort); + Str_Strcpy(distroShort, STR_OS_FREEBSD "11", sizeof distroShort); break; case 12: - Str_Strcpy(distroShort, STR_OS_FREEBSD12, sizeof distroShort); + Str_Strcpy(distroShort, STR_OS_FREEBSD "12", sizeof distroShort); break; default: // Unknown defaults to the highest known. /* FALL THROUGH */ case 13: - Str_Strcpy(distroShort, STR_OS_FREEBSD13, sizeof distroShort); + Str_Strcpy(distroShort, STR_OS_FREEBSD "13", sizeof distroShort); break; }