summaryrefslogtreecommitdiff
path: root/lib/libcrypto/rand
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2014-04-13 19:50:57 +0000
committerBob Beck <beck@cvs.openbsd.org>2014-04-13 19:50:57 +0000
commit90f9389255775c73f5ecfcfee55bb63d2eeb2aaa (patch)
tree3cfccbd89db9efe0152c960d86a16cdf45fa330b /lib/libcrypto/rand
parentdfb70841596929fb230c751dd4891a9c1fe6039a (diff)
Remove some stuff that isn't needed.
ok miod@ deraadt@
Diffstat (limited to 'lib/libcrypto/rand')
-rw-r--r--lib/libcrypto/rand/randfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/rand/randfile.c b/lib/libcrypto/rand/randfile.c
index 7f1428072d2..10d511b8e86 100644
--- a/lib/libcrypto/rand/randfile.c
+++ b/lib/libcrypto/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