From: Bodo Möller Date: Sat, 4 Mar 2000 17:56:32 +0000 (+0000) Subject: There is no reason to use downcase letters throughout in error reason X-Git-Tag: OpenSSL_0_9_5a-beta1~98 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1a2450bfc3e785c59882e6634c80365446cceabe;p=oweals%2Fopenssl.git There is no reason to use downcase letters throughout in error reason strings, it's just the default because it's usually ok. --- diff --git a/crypto/rand/rand_err.c b/crypto/rand/rand_err.c index d1263edf80..e6a7e56dca 100644 --- a/crypto/rand/rand_err.c +++ b/crypto/rand/rand_err.c @@ -71,7 +71,7 @@ static ERR_STRING_DATA RAND_str_functs[]= static ERR_STRING_DATA RAND_str_reasons[]= { -{RAND_R_PRNG_NOT_SEEDED ,"prng not seeded"}, +{RAND_R_PRNG_NOT_SEEDED ,"PRNG not seeded"}, {0,NULL} };