1
1

Revert #ifdef change that pulled in AES-CTR code when explicitly disabled.

Этот коммит содержится в:
Simon Josefsson 2010-03-01 13:09:18 +01:00
родитель ef27023eb9
Коммит 0ef84144ac

Просмотреть файл

@ -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 <openssl/aes.h>