From: Dr. Stephen Henson Date: Wed, 20 Jun 2007 17:49:42 +0000 (+0000) Subject: Fix warnings. X-Git-Tag: FIPS_098_TEST_1~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b2d65cbac72f27459872848d122f0dc62bde2d29;p=oweals%2Fopenssl.git Fix warnings. --- 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/crypto/evp/e_seed.c b/crypto/evp/e_seed.c index 2d1759d276..8c1ec0d43a 100644 --- a/crypto/evp/e_seed.c +++ b/crypto/evp/e_seed.c @@ -54,11 +54,11 @@ */ #include -#ifndef OPENSSL_NO_SEED #include #include #include #include +#ifndef OPENSSL_NO_SEED #include #include "evp_locl.h" diff --git a/test/igetest.c b/test/igetest.c index ecdeb90603..95452d0965 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);