summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/crypto/rand/randfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libssl/src/crypto/rand/randfile.c')
-rw-r--r--lib/libssl/src/crypto/rand/randfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/rand/randfile.c b/lib/libssl/src/crypto/rand/randfile.c
index 7f1428072d2..10d511b8e86 100644
--- a/lib/libssl/src/crypto/rand/randfile.c
+++ b/lib/libssl/src/crypto/rand/randfile.c
@@ -110,7 +110,7 @@ int RAND_load_file(const char *file, long bytes)
/* If bytes >= 0, read up to 'bytes' bytes.
* if bytes == -1, read complete file. */
- MS_STATIC unsigned char buf[BUFSIZE];
+ unsigned char buf[BUFSIZE];
#ifndef OPENSSL_NO_POSIX_IO
struct stat sb;
#endif