diff options
Diffstat (limited to 'src/lib/libcrypto/modes/cfb128.c')
-rw-r--r-- | src/lib/libcrypto/modes/cfb128.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/modes/cfb128.c b/src/lib/libcrypto/modes/cfb128.c index 4e6f5d35e1..731cb2864a 100644 --- a/src/lib/libcrypto/modes/cfb128.c +++ b/src/lib/libcrypto/modes/cfb128.c | |||
@@ -83,7 +83,7 @@ void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out, | |||
83 | --len; | 83 | --len; |
84 | n = (n+1) % 16; | 84 | n = (n+1) % 16; |
85 | } | 85 | } |
86 | #if defined(STRICT_ALIGNMENT) | 86 | #ifdef __STRICT_ALIGNMENT |
87 | if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) | 87 | if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) |
88 | break; | 88 | break; |
89 | #endif | 89 | #endif |
@@ -128,7 +128,7 @@ void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out, | |||
128 | --len; | 128 | --len; |
129 | n = (n+1) % 16; | 129 | n = (n+1) % 16; |
130 | } | 130 | } |
131 | #if defined(STRICT_ALIGNMENT) | 131 | #ifdef __STRICT_ALIGNMENT |
132 | if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) | 132 | if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) |
133 | break; | 133 | break; |
134 | #endif | 134 | #endif |