From 0ef84144acc496f8ce793447fb07a4d532a20f92 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Mon, 1 Mar 2010 13:09:18 +0100 Subject: [PATCH] Revert #ifdef change that pulled in AES-CTR code when explicitly disabled. --- src/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openssl.c b/src/openssl.c index 473337c..1af3bcd 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -201,7 +201,7 @@ _libssh2_cipher_crypt(_libssh2_cipher_ctx * ctx, return ret == 1 ? 0 : 1; } -#if defined(LIBSSH2_AES_CTR) && !defined(HAVE_EVP_AES128_CTR) +#if LIBSSH2_AES_CTR && !defined(HAVE_EVP_AES128_CTR) #include