X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=apps%2Fapp_rand.c;h=8a78e12eb732855b445c3e56f9f92c25bda2e8c3;hb=75c3c831db58232769f727d76e0504ce138f2dfc;hp=f7f133831d2afe62107a4ea8dcf49d5d7912918b;hpb=fea217f96f1396ee83341f596ecc083f6a91dfbf;p=oweals%2Fopenssl.git diff --git a/apps/app_rand.c b/apps/app_rand.c index f7f133831d..8a78e12eb7 100644 --- a/apps/app_rand.c +++ b/apps/app_rand.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ /* ==================================================================== - * Copyright (c) 1998-1999 The OpenSSL Project. All rights reserved. + * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -109,7 +109,9 @@ * */ +#define NON_MAIN #include "apps.h" +#undef NON_MAIN #include #include @@ -162,7 +164,7 @@ long app_RAND_load_files(char *name) char *p,*n; int last; long tot=0; - int egd; + int egd; for (;;) { @@ -174,9 +176,11 @@ long app_RAND_load_files(char *name) name=p+1; if (*n == '\0') break; - egd=RAND_egd(n); - if (egd > 0) tot+=egd; - tot+=RAND_load_file(n,1024L*1024L); + egd=RAND_egd(n); + if (egd > 0) + tot+=egd; + else + tot+=RAND_load_file(n,-1); if (last) break; } if (tot > 512)