From: Ben Laurie Date: Wed, 28 Apr 2004 10:20:21 +0000 (+0000) Subject: P, not T. X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ccabc6f49ab9280856639c9ca12d4d119a66e538;p=oweals%2Fopenssl.git P, not T. --- diff --git a/fips/dsa/fips_dssvs.c b/fips/dsa/fips_dssvs.c index 43c9671985..50a4d96986 100644 --- a/fips/dsa/fips_dssvs.c +++ b/fips/dsa/fips_dssvs.c @@ -267,7 +267,7 @@ void sigver() pbn("R",sig->r); pbn("S",sig->s); printf("Result = %c\n",DSA_do_verify(hash,sizeof hash,sig,dsa) - ? 'T' : 'F'); + ? 'P' : 'F'); putc('\n',stdout); } }