summaryrefslogtreecommitdiffstats
path: root/src/include/openssl/crypto.h
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-05-21 17:39:42 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-05-21 17:39:42 +0000
commit16eeb4c77688e29b80a9edc981069be8e77d638b (patch)
treeafc9dd368c9923d7556fb7f42bd3075060563c2d /src/include/openssl/crypto.h
parentfa32bda8a343ff3d1fccbda3846e05f01f2746d6 (diff)
parent58dc65d0b61c75c2d7ffcc942ec4e9f43b70b9cc (diff)
downloadexternal_boringssl-16eeb4c77688e29b80a9edc981069be8e77d638b.zip
external_boringssl-16eeb4c77688e29b80a9edc981069be8e77d638b.tar.gz
external_boringssl-16eeb4c77688e29b80a9edc981069be8e77d638b.tar.bz2
am 58dc65d0: external/boringssl: fix |SSLeay|.
* commit '58dc65d0b61c75c2d7ffcc942ec4e9f43b70b9cc': external/boringssl: fix |SSLeay|.
Diffstat (limited to 'src/include/openssl/crypto.h')
-rw-r--r--src/include/openssl/crypto.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/openssl/crypto.h b/src/include/openssl/crypto.h
index 5c974f8..3af1547 100644
--- a/src/include/openssl/crypto.h
+++ b/src/include/openssl/crypto.h
@@ -46,8 +46,9 @@ OPENSSL_EXPORT void CRYPTO_library_init(void);
* "BoringSSL". */
OPENSSL_EXPORT const char *SSLeay_version(int unused);
-/* SSLeay is a compatibility function that returns the string "BoringSSL". */
-OPENSSL_EXPORT const char *SSLeay(void);
+/* SSLeay is a compatibility function that returns OPENSSL_VERSION_NUMBER from
+ * base.h. */
+OPENSSL_EXPORT unsigned long SSLeay(void);
#if defined(__cplusplus)