summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Wenz <christian@wenz.org>2014-08-01 22:38:18 +0200
committerChristian Wenz <christian@wenz.org>2014-08-01 22:38:18 +0200
commit513d48f2efb03950b81d76e4cddcc1075868bb0f (patch)
treef10484b5089fd408d906e5e0e3c98b339109ffa0
parent60cc43a279479822af55dded38cafabe9b9123af (diff)
downloadphp-git-513d48f2efb03950b81d76e4cddcc1075868bb0f.tar.gz
Patches #67739
Fixes #67739: Windows 8.1/Server 2012 R2 OS build number reported as 6.2 (instead of 6.3)
-rw-r--r--ext/standard/info.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c
index 12e36b4f15..0d06037f81 100644
--- a/ext/standard/info.c
+++ b/ext/standard/info.c
@@ -592,6 +592,14 @@ PHPAPI char *php_get_uname(char mode)
php_get_windows_cpu(wincpu, sizeof(wincpu));
dwBuild = (DWORD)(HIWORD(dwVersion));
+
+ /* Windows "version" 6.2 could be Windows 8/Windows Server 2012, but also Windows 8.1/Windows Server 2012 R2 */
+ if (dwWindowsMajorVersion == 6 && dwWindowsMinorVersion == 2) {
+ if (strncmp(winver, "Windows 8.1", 11) == 0 || strncmp(winver, "Windows Server 2012 R2", 22) == 0) {
+ dwWindowsMinorVersion = 3;
+ }
+ }
+
snprintf(tmp_uname, sizeof(tmp_uname), "%s %s %d.%d build %d (%s) %s",
"Windows NT", ComputerName,
dwWindowsMajorVersion, dwWindowsMinorVersion, dwBuild, winver?winver:"unknown", wincpu);