From b2d65cbac72f27459872848d122f0dc62bde2d29 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 20 Jun 2007 17:49:42 +0000 Subject: [PATCH] Fix warnings. --- crypto/aes/aes_ige.c | 2 +- crypto/evp/e_seed.c | 2 +- test/igetest.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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); -- 2.25.1