summaryrefslogtreecommitdiffstats
path: root/crypto/rand
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-02-25 12:11:22 +0000
committerDr. Stephen Henson <steve@openssl.org>2014-02-25 13:40:33 +0000
commita4cc3c8041104896d51ae12ef7b678c31808ce52 (patch)
tree914087a9cfce93b5227e67f4d2e118956c52f9ab /crypto/rand
parent19f65ddbab30543415584ae7916e12a3c5249dba (diff)
Avoid Windows 8 Getversion deprecated errors.
Windows 8 SDKs complain that GetVersion() is deprecated. We only use GetVersion like this: (GetVersion() < 0x80000000) which checks if the Windows version is NT based. Use a macro check_winnt() which uses GetVersion() on older SDK versions and true otherwise.
Diffstat (limited to 'crypto/rand')
-rw-r--r--crypto/rand/rand_win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand/rand_win.c b/crypto/rand/rand_win.c
index 07ab4eb8df..73f261f122 100644
--- a/crypto/rand/rand_win.c
+++ b/crypto/rand/rand_win.c
@@ -752,7 +752,7 @@ static void readscreen(void)
int y; /* y-coordinate of screen lines to grab */
int n = 16; /* number of screen lines to grab at a time */
- if (GetVersion() < 0x80000000 && OPENSSL_isservice()>0)
+ if (check_winnt() && OPENSSL_isservice()>0)
return;
/* Create a screen DC and a memory DC compatible to screen DC */