From e37ae5fec5b8acb25cf25f3c0d8225cd3b6968c9 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Thu, 21 May 2020 08:51:56 -0400 Subject: [PATCH] fix(core): disable ASM version of blowfish on i386 --- SoObjects/SOGo/crypt_blowfish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoObjects/SOGo/crypt_blowfish.c b/SoObjects/SOGo/crypt_blowfish.c index 9d3f3be82..488a92056 100644 --- a/SoObjects/SOGo/crypt_blowfish.c +++ b/SoObjects/SOGo/crypt_blowfish.c @@ -54,7 +54,7 @@ #include "crypt_blowfish.h" #ifdef __i386__ -#define BF_ASM 1 +#define BF_ASM 0 #define BF_SCALE 1 #elif defined(__x86_64__) || defined(__alpha__) || defined(__hppa__) #define BF_ASM 0