1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-02 10:53:16 +03:00

Fix OpenSSL AES-128-CTR detection.

Patch from Paul Howarth <paul@city-fan.org>.
This commit is contained in:
Simon Josefsson
2010-04-14 14:04:45 +02:00
parent 32cf14b512
commit 77fa740674
3 changed files with 4 additions and 4 deletions

View File

@@ -201,7 +201,7 @@ _libssh2_cipher_crypt(_libssh2_cipher_ctx * ctx,
return ret == 1 ? 0 : 1;
}
#if LIBSSH2_AES_CTR && !defined(HAVE_EVP_AES128_CTR)
#if LIBSSH2_AES_CTR && !defined(HAVE_EVP_AES_128_CTR)
#include <openssl/aes.h>