The branch master has been updated
via 43b3ab6f872ef64622d98ab0e3c88e312453c089 (commit)
from 1bb78e72b9785c2cae40570e3aa8c9eb72d735e7 (commit)
- Log -----------------------------------------------------------------
commit 43b3ab6f872ef64622d98ab0e3c88e312453c089
Author: Richard Levitte <[email protected]>
Date: Thu Jul 16 19:21:22 2020 +0200
Fix typo for SSL_get_peer_certificate()
Reviewed-by: Shane Lontis <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/12468)
-----------------------------------------------------------------------
Summary of changes:
include/openssl/ssl.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 53664229c2..c030346760 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -1710,7 +1710,7 @@ __owur X509 *SSL_get0_peer_certificate(const SSL *s);
__owur X509 *SSL_get1_peer_certificate(const SSL *s);
/* Deprecated in 3.0.0 */
# ifndef OPENSSL_NO_DEPRECATED_3_0
-# define SSL_get_peer_certificate SSL_get1_peer_certifiate
+# define SSL_get_peer_certificate SSL_get1_peer_certificate
# endif
# endif