Commit 103c861d authored by Sebastian Hahn's avatar Sebastian Hahn
Browse files

Looks like Windows version 6.2 will be Windows 8

Thanks to funkstar for the report
parent ff8aba70
Loading
Loading
Loading
Loading

changes/windows_8

0 → 100644
+5 −0
Original line number Diff line number Diff line
  o Minor bugfixes:
    - The next version of Windows will be called Windows 8, and it has a major
      version of 6, minor version of 2. Correctly identify that version instead
      of calling it "Very recent version". Fixes bug 4153; reported by funkstar.
+2 −1
Original line number Diff line number Diff line
@@ -1806,6 +1806,7 @@ get_uname(void)
        static struct {
          unsigned major; unsigned minor; const char *version;
        } win_version_table[] = {
          { 6, 2, "Windows 8" },
          { 6, 1, "Windows 7" },
          { 6, 0, "Windows Vista" },
          { 5, 2, "Windows Server 2003" },
@@ -1862,7 +1863,7 @@ get_uname(void)
                       plat, extra);
        } else {
          if (info.dwMajorVersion > 6 ||
              (info.dwMajorVersion==6 && info.dwMinorVersion>1))
              (info.dwMajorVersion==6 && info.dwMinorVersion>2))
            tor_snprintf(uname_result, sizeof(uname_result),
                      "Very recent version of Windows [major=%d,minor=%d] %s",
                      (int)info.dwMajorVersion,(int)info.dwMinorVersion,