From 1a61b4277540bef5b0175d98a8f7253bc15c8f42 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Wed, 16 Jul 2014 15:11:14 +0200 Subject: [PATCH] update output; remove unused define --- src/misc/crypt/crypt.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/misc/crypt/crypt.c b/src/misc/crypt/crypt.c index 769f222..f7b83d1 100644 --- a/src/misc/crypt/crypt.c +++ b/src/misc/crypt/crypt.c @@ -184,12 +184,8 @@ const char *crypt_build_settings = " CBC\n" #endif #if defined(LTC_CTR_MODE) - " CTR " + " CTR\n" #endif -#if defined(LTC_CTR_OLD) - " (CTR_OLD) " -#endif - "\n" #if defined(LTC_LRW_MODE) " LRW" #if defined(LRW_TABLES) @@ -291,7 +287,9 @@ const char *crypt_build_settings = #endif "\nCompiler:\n" -#if defined(WIN32) +#if defined(_WIN64) + " WIN64 platform detected.\n" +#elif defined(_WIN32) " WIN32 platform detected.\n" #endif #if defined(__CYGWIN__) @@ -315,7 +313,7 @@ const char *crypt_build_settings = " x86-64 detected.\n" #endif #if defined(LTC_PPC32) - " PPC32 defined \n" + " PPC32 detected.\n" #endif "\nVarious others: " @@ -379,15 +377,15 @@ const char *crypt_build_settings = #if defined(TFM_DESC) " TFM_DESC " #endif -#if defined(LTC_MECC_ACCEL) - " LTC_MECC_ACCEL " -#endif #if defined(GMP_DESC) " GMP_DESC " #endif #if defined(LTC_EASY) " LTC_EASY " #endif +#if defined(LTC_MECC_ACCEL) + " LTC_MECC_ACCEL " +#endif #if defined(LTC_MECC_FP) " LTC_MECC_FP " #endif