From 96d109af817265a687dd3877525b8fd29a3b487f Mon Sep 17 00:00:00 2001 From: orignal Date: Sat, 27 Oct 2018 19:55:23 -0400 Subject: [PATCH] fixed typo --- libi2pd/Crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd/Crypto.h b/libi2pd/Crypto.h index 7ec38235..5fa58f6d 100644 --- a/libi2pd/Crypto.h +++ b/libi2pd/Crypto.h @@ -124,7 +124,7 @@ namespace crypto else #endif { - if (((size_t)buf | (size_t)other.buf) & 0x03) // multiple of 4 ? + if (!(((size_t)buf | (size_t)other.buf) & 0x03)) // multiple of 4 ? { // we are good to cast to uint32_t * for (int i = 0; i < 4; i++)