summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand_unix.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-06-18 04:42:24 +0000
committerRichard Levitte <levitte@openssl.org>2005-06-18 04:42:24 +0000
commit4bd46774bb73bce491e5556f8e43a5d9d8ba4539 (patch)
treed4d8e304d907eec996c7f956d55bb3f70ec14299 /crypto/rand/rand_unix.c
parent283c3e24371f1bc5d54e01c09375e60258d1f921 (diff)
Move the definition of DEVRANDOM for DJGPP from Configure to e_os.h.
That should solve the issues with propagating it through the Makefiles. PR: 1110
Diffstat (limited to 'crypto/rand/rand_unix.c')
-rw-r--r--crypto/rand/rand_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand/rand_unix.c b/crypto/rand/rand_unix.c
index bf9a0e993a..14837a7a7d 100644
--- a/crypto/rand/rand_unix.c
+++ b/crypto/rand/rand_unix.c
@@ -153,7 +153,7 @@ int RAND_poll(void)
int n = 0;
#endif
#ifdef DEVRANDOM
- static const char *randomfiles[] = { "DEVRANDOM" };
+ static const char *randomfiles[] = { DEVRANDOM };
struct stat randomstats[sizeof(randomfiles)/sizeof(randomfiles[0])];
int fd,i;
#endif