From 1d1255fe992efe2c65db7e0a6722b55ede03034a Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Tue, 28 Mar 2017 16:31:54 -0400 Subject: [PATCH] Remove duplicate doc Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/3068) (cherry picked from commit a01dbac232166563cdeafcbe31f321c05d164a10) --- doc/ssl/SSL_CTX_set_ex_data.pod | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/doc/ssl/SSL_CTX_set_ex_data.pod b/doc/ssl/SSL_CTX_set_ex_data.pod index cb88ea0ca5..fd0364b487 100644 --- a/doc/ssl/SSL_CTX_set_ex_data.pod +++ b/doc/ssl/SSL_CTX_set_ex_data.pod @@ -3,8 +3,7 @@ =head1 NAME SSL_CTX_get_ex_data, SSL_CTX_set_ex_data, -SSL_get_ex_data, SSL_set_ex_data, -SSL_SESSION_get_ex_data, SSL_SESSION_set_ex_data +SSL_get_ex_data, SSL_set_ex_data - Store and retrieve extra data from the SSL_CTX, SSL or SSL_SESSION =head1 SYNOPSIS @@ -19,14 +18,10 @@ SSL_SESSION_get_ex_data, SSL_SESSION_set_ex_data int SSL_set_ex_data(SSL *s, int idx, void *arg); - int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg); - - void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx); - =head1 DESCRIPTION SSL*_set_ex_data() functions can be used to store arbitrary user data into the -B, B or B. The user must supply a unique index +B, or B object. The user must supply a unique index which they can subsequently use to retrieve the data using SSL*_get_ex_data(). For more detailed information see L and -- 2.34.1