mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-03 20:40:17 -05:00
Utility::GetPlatformKernelVersion(): also output the build number
I.e. output 6.2.9200, not just 6.2.
This commit is contained in:
parent
a65f2d6b41
commit
85fc3b7393
1 changed files with 1 additions and 1 deletions
|
|
@ -1708,7 +1708,7 @@ String Utility::GetPlatformKernelVersion()
|
|||
GetVersionEx(&info);
|
||||
|
||||
std::ostringstream msgbuf;
|
||||
msgbuf << info.dwMajorVersion << "." << info.dwMinorVersion;
|
||||
msgbuf << info.dwMajorVersion << "." << info.dwMinorVersion << "." << info.dwBuildNumber;
|
||||
|
||||
return msgbuf.str();
|
||||
#else /* _WIN32 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue