You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2019/03/22 18:16:47 UTC

svn commit: r1856072 - /apr/apr-util/branches/1.7.x/crypto/apr_crypto_openssl.c

Author: wrowe
Date: Fri Mar 22 18:16:47 2019
New Revision: 1856072

URL: http://svn.apache.org/viewvc?rev=1856072&view=rev
Log:
Pick up r1836496, fix typo on binary test

Modified:
    apr/apr-util/branches/1.7.x/crypto/apr_crypto_openssl.c

Modified: apr/apr-util/branches/1.7.x/crypto/apr_crypto_openssl.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.7.x/crypto/apr_crypto_openssl.c?rev=1856072&r1=1856071&r2=1856072&view=diff
==============================================================================
--- apr/apr-util/branches/1.7.x/crypto/apr_crypto_openssl.c (original)
+++ apr/apr-util/branches/1.7.x/crypto/apr_crypto_openssl.c Fri Mar 22 18:16:47 2019
@@ -200,7 +200,7 @@ void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX
 
 #endif
 
-#ifdef APR_USE_OPENSSL_PRE_1_1_API
+#if APR_USE_OPENSSL_PRE_1_1_API
 #define EVP_MD_CTX_new EVP_MD_CTX_create
 #define EVP_MD_CTX_free EVP_MD_CTX_destroy
 #endif