*** empty log message ***

svn path=/trunk/boinc/; revision=3055
This commit is contained in:
Rom Walton 2004-03-11 21:23:44 +00:00
parent 929b82cf80
commit ee8d12c82f
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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 )