commit 5ec4fb755821f65c8b59b55c7629be371fe29fb0 parent e66fde45f1b1c90a7f98e66980d2a7e4227a17a1 Author: teor <teor@torproject.org> Date: Sat, 16 Nov 2019 23:31:09 +1000 crypt_ops: Fix some weird macro spacing Diffstat:
| M | src/lib/crypt_ops/crypto_openssl_mgt.c | | | 2 | +- |
| M | src/lib/crypt_ops/crypto_s2k.c | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib/crypt_ops/crypto_openssl_mgt.c b/src/lib/crypt_ops/crypto_openssl_mgt.c @@ -399,7 +399,7 @@ crypto_openssl_thread_cleanup(void) void crypto_openssl_global_cleanup(void) { - #ifndef OPENSSL_1_1_API +#ifndef OPENSSL_1_1_API EVP_cleanup(); #endif #ifndef NEW_THREAD_API diff --git a/src/lib/crypt_ops/crypto_s2k.c b/src/lib/crypt_ops/crypto_s2k.c @@ -380,7 +380,7 @@ secret_to_key_derivekey(uint8_t *key_out, size_t key_out_len, #ifndef HAVE_SCRYPT if (type == S2K_TYPE_SCRYPT) return S2K_NO_SCRYPT_SUPPORT; - #endif +#endif if (! legacy_format) { ++spec;