From: Oliver Kurth Date: Fri, 27 Jul 2018 18:46:21 +0000 (-0700) Subject: Fix the broken list in lib/include/guest_os_tables.h X-Git-Tag: stable-11.0.0~512 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57bc4445db65d50d0f7292bf99f1d239e5e3ac9a;p=thirdparty%2Fopen-vm-tools.git Fix the broken list in lib/include/guest_os_tables.h The list wasn't sorted. --- diff --git a/open-vm-tools/lib/include/guest_os_tables.h b/open-vm-tools/lib/include/guest_os_tables.h index c7c4fbaea..f551eee48 100644 --- a/open-vm-tools/lib/include/guest_os_tables.h +++ b/open-vm-tools/lib/include/guest_os_tables.h @@ -270,6 +270,7 @@ extern "C" { GOSL(STR_OS_WIN_31, GUEST_OS_WIN31, "winPre2k.iso") \ GOSL(STR_OS_WIN_95, GUEST_OS_WIN95, "winPre2k.iso") \ GOSL(STR_OS_WIN_98, GUEST_OS_WIN98, "winPre2k.iso") \ + GOSL(STR_OS_WIN_2019SRV_X64, GUEST_OS_WIN_2019SRV_64, "windows.iso") \ GOSL(STR_OS_WIN_SEVEN, GUEST_OS_WINSEVEN, "windows.iso") \ GOSL(STR_OS_WIN_SEVEN_X64, GUEST_OS_WINSEVEN_64, "windows.iso") \ GOSL("windows7Server64Guest", GUEST_OS_WIN2008R2_64, "windows.iso") \ @@ -280,7 +281,6 @@ extern "C" { GOSL(STR_OS_WIN_TEN, GUEST_OS_WINTEN, "windows.iso") \ GOSL(STR_OS_WIN_TEN_X64, GUEST_OS_WINTEN_64, "windows.iso") \ GOSL(STR_OS_WIN_2016SRV_X64, GUEST_OS_WIN_2016SRV_64, "windows.iso") \ - GOSL(STR_OS_WIN_2019SRV_X64, GUEST_OS_WIN_2019SRV_64, "windows.iso") \ GOSL(STR_OS_HYPER_V, GUEST_OS_HYPER_V, NULL) \ GOSL("winLonghorn64Guest", GUEST_OS_LONGHORN_64, "windows.iso") \ GOSL("winLonghornGuest", GUEST_OS_LONGHORN, "windows.iso") \