From: Dr. Stephen Henson Date: Thu, 3 Jan 2008 13:46:46 +0000 (+0000) Subject: Suppress debug output from AES algorithm test. X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e8ef24dc868ec4252153f129ea862b6ab0d1884b;p=oweals%2Fopenssl.git Suppress debug output from AES algorithm test. --- diff --git a/fips-1.0/aes/fips_aesavs.c b/fips-1.0/aes/fips_aesavs.c index af7874970c..6aa358f8ef 100644 --- a/fips-1.0/aes/fips_aesavs.c +++ b/fips-1.0/aes/fips_aesavs.c @@ -811,7 +811,8 @@ int proc_file(char *rqfile, char *rspfile) else if (strncasecmp(pp, "Key Length : ", 13) == 0) { akeysz = atoi(pp+13); - printf("Key size = %d\n", akeysz); + if (VERBOSE) + printf("Key size = %d\n", akeysz); } } }