diff options
Diffstat (limited to 'openbsd-compat/openssl-compat.h')
-rw-r--r-- | openbsd-compat/openssl-compat.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h index 6d4f3f215..c5fc24eb4 100644 --- a/openbsd-compat/openssl-compat.h +++ b/openbsd-compat/openssl-compat.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: openssl-compat.h,v 1.18 2011/01/21 22:37:06 dtucker Exp $ */ | 1 | /* $Id: openssl-compat.h,v 1.19 2011/05/10 01:13:38 dtucker Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au> | 4 | * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au> |
@@ -106,10 +106,10 @@ RSA_METHOD *RSA_get_default_method(void); | |||
106 | # endif | 106 | # endif |
107 | 107 | ||
108 | # ifdef USE_OPENSSL_ENGINE | 108 | # ifdef USE_OPENSSL_ENGINE |
109 | # ifdef SSLeay_add_all_algorithms | 109 | # ifdef OpenSSL_add_all_algorithms |
110 | # undef SSLeay_add_all_algorithms | 110 | # undef OpenSSL_add_all_algorithms |
111 | # endif | 111 | # endif |
112 | # define SSLeay_add_all_algorithms() ssh_SSLeay_add_all_algorithms() | 112 | # define OpenSSL_add_all_algorithms() ssh_OpenSSL_add_all_algorithms() |
113 | # endif | 113 | # endif |
114 | 114 | ||
115 | # ifndef HAVE_BN_IS_PRIME_EX | 115 | # ifndef HAVE_BN_IS_PRIME_EX |
@@ -129,6 +129,6 @@ int ssh_EVP_CipherInit(EVP_CIPHER_CTX *, const EVP_CIPHER *, unsigned char *, | |||
129 | unsigned char *, int); | 129 | unsigned char *, int); |
130 | int ssh_EVP_Cipher(EVP_CIPHER_CTX *, char *, char *, int); | 130 | int ssh_EVP_Cipher(EVP_CIPHER_CTX *, char *, char *, int); |
131 | int ssh_EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *); | 131 | int ssh_EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *); |
132 | void ssh_SSLeay_add_all_algorithms(void); | 132 | void ssh_OpenSSL_add_all_algorithms(void); |
133 | #endif /* SSH_DONT_OVERLOAD_OPENSSL_FUNCS */ | 133 | #endif /* SSH_DONT_OVERLOAD_OPENSSL_FUNCS */ |
134 | 134 | ||