From 1a2450bfc3e785c59882e6634c80365446cceabe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Sat, 4 Mar 2000 17:56:32 +0000 Subject: [PATCH] There is no reason to use downcase letters throughout in error reason strings, it's just the default because it's usually ok. --- crypto/rand/rand_err.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} }; -- 2.34.1