projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
RAND_load_file(..., -1) now means "read the complete file";
[openssl.git]
/
apps
/
app_rand.c
diff --git
a/apps/app_rand.c
b/apps/app_rand.c
index
9e29e54
..
6384dd0
100644
(file)
--- a/
apps/app_rand.c
+++ b/
apps/app_rand.c
@@
-130,7
+130,7
@@
int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn)
if (file == NULL)
file = RAND_file_name(buffer, sizeof buffer);
- if (file == NULL || !RAND_load_file(file,
1024L*1024L
))
+ if (file == NULL || !RAND_load_file(file,
-1
))
{
if (!dont_warn)
{