* uname.cc (uname): Shorten "WOW64" to "WOW" to account for the new
Windows 10 OS version "10.0" starting with preview build 9926.
This commit is contained in:
parent
71906368e5
commit
73b4c40205
@ -1,3 +1,8 @@
|
|||||||
|
2015-01-24 Pierre A. Humblet <pierre@phumblet.no-ip.org>
|
||||||
|
|
||||||
|
* uname.cc (uname): Shorten "WOW64" to "WOW" to account for the new
|
||||||
|
Windows 10 OS version "10.0" starting with preview build 9926.
|
||||||
|
|
||||||
2015-01-23 Pierre A. Humblet <pierre@phumblet.no-ip.org>
|
2015-01-23 Pierre A. Humblet <pierre@phumblet.no-ip.org>
|
||||||
|
|
||||||
* net.cc (cygwin_inet_pton): Declare.
|
* net.cc (cygwin_inet_pton): Declare.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* uname.cc
|
/* uname.cc
|
||||||
|
|
||||||
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
||||||
2006, 2007, 2008, 2013, 2014 Red Hat, Inc.
|
2006, 2007, 2008, 2013, 2014, 2015 Red Hat, Inc.
|
||||||
Written by Steve Chamberlain of Cygnus Support, sac@cygnus.com
|
Written by Steve Chamberlain of Cygnus Support, sac@cygnus.com
|
||||||
Rewritten by Geoffrey Noer of Cygnus Solutions, noer@cygnus.com
|
Rewritten by Geoffrey Noer of Cygnus Solutions, noer@cygnus.com
|
||||||
|
|
||||||
@ -32,7 +32,7 @@ uname (struct utsname *name)
|
|||||||
/* Add a hint to the sysname, that we're running under WOW64. This might
|
/* Add a hint to the sysname, that we're running under WOW64. This might
|
||||||
give an early clue if somebody encounters problems. */
|
give an early clue if somebody encounters problems. */
|
||||||
if (wincap.is_wow64 ())
|
if (wincap.is_wow64 ())
|
||||||
strncat (name->sysname, "-WOW64",
|
strncat (name->sysname, "-WOW",
|
||||||
sizeof name->sysname - strlen (name->sysname) - 1);
|
sizeof name->sysname - strlen (name->sysname) - 1);
|
||||||
|
|
||||||
GetSystemInfo (&sysinfo);
|
GetSystemInfo (&sysinfo);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user