aboutsummaryrefslogtreecommitdiff
path: root/lib/ssluse.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-03-16 11:41:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-03-16 11:41:27 +0000
commitd48939c0c06fb9ca7e4df7d4d16c5f8b331c3bcb (patch)
tree46beeabb825ca9d892acda84c483155ac7a5a331 /lib/ssluse.c
parent0aa3f705c21a49d43ce5f2e7bdd7a8686c1ee418 (diff)
makes use of HAVE_RAND_SCREEN instead of WIN32 for using RAND_screen()
Diffstat (limited to 'lib/ssluse.c')
-rw-r--r--lib/ssluse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c
index 17bec70da..0eae0a93c 100644
--- a/lib/ssluse.c
+++ b/lib/ssluse.c
@@ -169,7 +169,7 @@ UrgSSLConnect (struct UrlData *data)
#endif
{
/* We need to seed the PRNG properly! */
-#ifdef WIN32
+#ifdef HAVE_RAND_SCREEN
/* This one gets a random value by reading the currently shown screen */
RAND_screen();
#else