diff options
author | Kostiantyn Kostiuk <konstantin@daynix.com> | 2021-06-21 15:50:17 +0300 |
---|---|---|
committer | Michael Roth <michael.roth@amd.com> | 2021-07-12 11:26:47 -0500 |
commit | c141814d4f495bd9efdabb1229ce0a5b5a239bf3 (patch) | |
tree | d07da1a5d9a34649f72ccf42c2b6512d6d4ce671 /qga | |
parent | bd38ae26cea0d1d6a97f930248df149204c210a2 (diff) |
qga-win: Add support of Windows Server 2022 in get-osinfo command
Signed-off-by: Kostiantyn Kostiuk <konstantin@daynix.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>
Diffstat (limited to 'qga')
-rw-r--r-- | qga/commands-win32.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qga/commands-win32.c b/qga/commands-win32.c index 27baf17d6c..a099acb34d 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -2166,9 +2166,10 @@ typedef struct _ga_win_10_0_server_t { char const *version_id; } ga_win_10_0_server_t; -static ga_win_10_0_server_t const WIN_10_0_SERVER_VERSION_MATRIX[3] = { +static ga_win_10_0_server_t const WIN_10_0_SERVER_VERSION_MATRIX[4] = { {14393, "Microsoft Windows Server 2016", "2016"}, {17763, "Microsoft Windows Server 2019", "2019"}, + {20344, "Microsoft Windows Server 2022", "2022"}, {0, 0} }; |