mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3055
This commit is contained in:
parent
929b82cf80
commit
ee8d12c82f
|
@ -10427,3 +10427,10 @@ Rom Mar 9 2004
|
|||
|
||||
client/win/
|
||||
hostinfo_win.cpp
|
||||
|
||||
Rom Mar 11 2004
|
||||
- Properly identify Windows Longhorn
|
||||
|
||||
client/win/
|
||||
hostinfo_win.cpp
|
||||
|
||||
|
|
|
@ -61,8 +61,7 @@ int get_host_info(HOST_INFO& host) {
|
|||
case VER_PLATFORM_WIN32_NT:
|
||||
|
||||
// Test for the specific product family.
|
||||
if ( (osvi.dwMajorVersion >= 5) ||
|
||||
((osvi.dwMajorVersion == 5) && (osvi.dwMinorVersion >= 2)) )
|
||||
if ( osvi.dwMajorVersion >= 6 )
|
||||
strcpy( host.os_name, "Microsoft Windows Longhorn " );
|
||||
|
||||
if ( osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 2 )
|
||||
|
|
Loading…
Reference in New Issue