From: Matt Caswell Date: Sun, 25 May 2014 22:37:53 +0000 (+0100) Subject: Fixed error in args for SSL_set_msg_callback and SSL_set_msg_callback_arg X-Git-Tag: OpenSSL_1_0_1h~28 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=67b9c82ea247b604cb12053fecc9916c9e65866c;p=oweals%2Fopenssl.git Fixed error in args for SSL_set_msg_callback and SSL_set_msg_callback_arg --- diff --git a/doc/ssl/SSL_CTX_set_msg_callback.pod b/doc/ssl/SSL_CTX_set_msg_callback.pod index 0015e6ea79..8b82d94a38 100644 --- a/doc/ssl/SSL_CTX_set_msg_callback.pod +++ b/doc/ssl/SSL_CTX_set_msg_callback.pod @@ -11,8 +11,8 @@ SSL_CTX_set_msg_callback, SSL_CTX_set_msg_callback_arg, SSL_set_msg_callback, SS void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg); - void SSL_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); - void SSL_set_msg_callback_arg(SSL_CTX *ctx, void *arg); + void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); + void SSL_set_msg_callback_arg(SSL *ssl, void *arg); =head1 DESCRIPTION