diff options
author | Bodo Möller <bodo@openssl.org> | 2000-03-04 17:44:07 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-03-04 17:44:07 +0000 |
commit | cf7fa82897a143a9c9b6cefb7c456cee03b0e543 (patch) | |
tree | d7b62246df74a0b7a97461e847568399448404f2 /apps | |
parent | e45b3305b78658ee444f2c7fea6fc877625d6dcc (diff) | |
download | openssl-new-cf7fa82897a143a9c9b6cefb7c456cee03b0e543.tar.gz |
Read complete seed files given in -rand options.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/app_rand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_rand.c b/apps/app_rand.c index 9dc32f99a2..1146f9f7f3 100644 --- a/apps/app_rand.c +++ b/apps/app_rand.c @@ -178,7 +178,7 @@ long app_RAND_load_files(char *name) egd=RAND_egd(n); if (egd > 0) tot+=egd; - tot+=RAND_load_file(n,1024L*1024L); + tot+=RAND_load_file(n,-1); if (last) break; } if (tot > 512) |