From: Dr. Stephen Henson Date: Fri, 1 Aug 2003 13:07:29 +0000 (+0000) Subject: Replace C++ style comments. X-Git-Tag: OpenSSL_0_9_7c~39 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=693f2e362567c35c60d8efd62069022f43f3b6ab;p=oweals%2Fopenssl.git Replace C++ style comments. --- diff --git a/fips/aes/fips_aesavs.c b/fips/aes/fips_aesavs.c index 914a442a48..5ccfd82fed 100644 --- a/fips/aes/fips_aesavs.c +++ b/fips/aes/fips_aesavs.c @@ -271,8 +271,8 @@ enum XCrypt {XDECRYPT, XENCRYPT}; /* Monte Carlo Tests */ /*-----------------------------*/ -//#define gb(a,b) (((a)[(b)/8] >> ((b)%8))&1) -//#define sb(a,b,v) ((a)[(b)/8]=((a)[(b)/8]&~(1 << ((b)%8)))|(!!(v) << ((b)%8))) +/*#define gb(a,b) (((a)[(b)/8] >> ((b)%8))&1)*/ +/*#define sb(a,b,v) ((a)[(b)/8]=((a)[(b)/8]&~(1 << ((b)%8)))|(!!(v) << ((b)%8)))*/ #define gb(a,b) (((a)[(b)/8] >> (7-(b)%8))&1) #define sb(a,b,v) ((a)[(b)/8]=((a)[(b)/8]&~(1 << (7-(b)%8)))|(!!(v) << (7-(b)%8))) @@ -628,7 +628,7 @@ int proc_file(char *rqfile) while (!err && (fgets(ibuf, sizeof(ibuf), afp)) != NULL) { ilen = strlen(ibuf); - // printf("step=%d ibuf=%s",step,ibuf); + /* printf("step=%d ibuf=%s",step,ibuf); */ switch (step) { case 0: /* read preamble */