summaryrefslogtreecommitdiffstats
path: root/crypto/rand
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-01-15 13:40:21 +0000
committerAndy Polyakov <appro@openssl.org>2012-01-15 13:40:21 +0000
commit4fb7e2b4454cedef93cee01a156973d5c2e84d83 (patch)
tree5e6e8e7edc955aa1c9e0d3685d58292cc478c78b /crypto/rand
parent9138e3c061bd332c06780677be47bedc0251d826 (diff)
Fix OPNESSL vs. OPENSSL typos [from HEAD].
PR: 2613 Submitted by: Leena Heino
Diffstat (limited to 'crypto/rand')
-rw-r--r--crypto/rand/randfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand/randfile.c b/crypto/rand/randfile.c
index bc7d9c5804..030e07f418 100644
--- a/crypto/rand/randfile.c
+++ b/crypto/rand/randfile.c
@@ -137,7 +137,7 @@ int RAND_load_file(const char *file, long bytes)
in=fopen(file,"rb");
#endif
if (in == NULL) goto err;
-#if defined(S_IFBLK) && defined(S_IFCHR) && !defined(OPNESSL_NO_POSIX_IO)
+#if defined(S_IFBLK) && defined(S_IFCHR) && !defined(OPENSSL_NO_POSIX_IO)
if (sb.st_mode & (S_IFBLK | S_IFCHR)) {
/* this file is a device. we don't want read an infinite number
* of bytes from a random device, nor do we want to use buffered