summaryrefslogtreecommitdiffstats
path: root/src/include/openssl/crypto.h
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-05-19 15:56:28 -0700
committerAdam Langley <agl@google.com>2015-05-19 15:56:28 -0700
commit12addf8c63e77091bece8ad715f30cfd957a5332 (patch)
tree0d2b57963c91e7abe6deb571d2322402df9c82c0 /src/include/openssl/crypto.h
parent71cbcbedb24dacc402647b2e8b2a52b76cf5cfc2 (diff)
downloadexternal_boringssl-12addf8c63e77091bece8ad715f30cfd957a5332.zip
external_boringssl-12addf8c63e77091bece8ad715f30cfd957a5332.tar.gz
external_boringssl-12addf8c63e77091bece8ad715f30cfd957a5332.tar.bz2
external/boringssl: fix |SSLeay|.
SSLeay is a compatibility function for OpenSSL, but I got it wrong. It doesn't return a string, it returns a number. This doesn't end up making any difference, but it fixes a warning when building OpenSSH. Bug: 21304170 Change-Id: I3e4bb0240b18647cfe2a3ce5869948a4527ff0f0
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)