From 71ccf961af181fcfceb8d155272b8e8f328a0919 Mon Sep 17 00:00:00 2001 From: Kurt Roeckx Date: Sun, 27 Mar 2016 20:52:03 +0200 Subject: [PATCH 1/1] It's called SSL_session_reused(), not SSL_session_resumed() Reviewed-by: Viktor Dukhovni MR: #2452 --- doc/ssl/SSL_CTX_dane_enable.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ssl/SSL_CTX_dane_enable.pod b/doc/ssl/SSL_CTX_dane_enable.pod index f2cb99ed42..8463a3d093 100644 --- a/doc/ssl/SSL_CTX_dane_enable.pod +++ b/doc/ssl/SSL_CTX_dane_enable.pod @@ -214,7 +214,7 @@ the lifetime of the SSL connection. /* Perform SSL_connect() handshake and handle errors here */ - if (SSL_session_resumed(ssl)) { + if (SSL_session_reused(ssl)) { if (SSL_get_verify_result(ssl) == X509_V_OK) { /* * Resumed session was originally verified, this connection is -- 2.34.1