From: Dr. Stephen Henson Date: Tue, 15 May 2007 23:50:55 +0000 (+0000) Subject: Change C++ style comments. X-Git-Tag: OpenSSL_0_9_8k^2~839 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9660cbcd6b5981f631d10dad6a55008306e5c20b;p=oweals%2Fopenssl.git Change C++ style comments. --- diff --git a/crypto/aes/aes_ige.c b/crypto/aes/aes_ige.c index aeb11dbbac..8b5b36bacc 100644 --- a/crypto/aes/aes_ige.c +++ b/crypto/aes/aes_ige.c @@ -59,7 +59,7 @@ typedef struct { unsigned long data[N_WORDS]; } aes_block_t; -// XXX: probably some better way to do this +/* XXX: probably some better way to do this */ #if defined(__i386__) || defined(__x86_64__) #define UNALIGNED_MEMOPS_ARE_FAST 1 #endif diff --git a/test/igetest.c b/test/igetest.c index 17a4e4d208..527c6c7f91 100644 --- a/test/igetest.c +++ b/test/igetest.c @@ -221,7 +221,7 @@ static int run_test_vectors(void) ++errs; } - // try with in == out + /* try with in == out */ memcpy(iv, v->iv, sizeof iv); memcpy(buf, v->in, v->length); AES_ige_encrypt(buf, buf, v->length, &key, iv, v->encrypt);