From: Coty Sutherland Date: Thu, 14 Jul 2016 12:52:52 +0000 (-0400) Subject: Resolve over command syntax error which causes 'make install' to fail X-Git-Tag: OpenSSL_1_1_0-pre6~148 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=2a5f907edf6887ddccaec22607f82e8577c36091 Resolve over command syntax error which causes 'make install' to fail Reviewed-by: Matt Caswell Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1312) --- diff --git a/doc/crypto/BIO_set_callback.pod b/doc/crypto/BIO_set_callback.pod index 6f2630d9a4..113b416488 100644 --- a/doc/crypto/BIO_set_callback.pod +++ b/doc/crypto/BIO_set_callback.pod @@ -40,15 +40,24 @@ BIO_callback_fn() is the type of the callback function. The meaning of each argument is described below: =over + +=item B + The BIO the callback is attached to is passed in B. +=item B + B is set to the operation being performed. For some operations the callback is called twice, once before and once after the actual operation, the latter case has B or'ed with BIO_CB_RETURN. +=item B B B + The meaning of the arguments B, B and B depends on the value of B, that is the operation being performed. +=item B + B is the return value that would be returned to the application if no callback were present. The actual value returned is the return value of the callback itself. In the case of callbacks