From: Dr. David von Oheimb Date: Fri, 27 Dec 2019 09:54:38 +0000 (+0100) Subject: fix a glitch in the documentation of OCSP_sendreq_bio() X-Git-Tag: OpenSSL_1_1_1e~69 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6d5e2a41793ffffda9891e08f61a77f636e297db;p=oweals%2Fopenssl.git fix a glitch in the documentation of OCSP_sendreq_bio() Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10713) --- diff --git a/doc/man3/OCSP_sendreq_new.pod b/doc/man3/OCSP_sendreq_new.pod index 65ba235c10..7421698332 100644 --- a/doc/man3/OCSP_sendreq_new.pod +++ b/doc/man3/OCSP_sendreq_new.pod @@ -24,8 +24,7 @@ OCSP_REQ_CTX_set1_req, OCSP_sendreq_bio - OCSP responder query functions int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req); - OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req, - int maxline); + OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req); =head1 DESCRIPTION @@ -54,8 +53,8 @@ OCSP_REQ_CTX_set1_req() sets the OCSP request in B to B. This function should be called after any calls to OCSP_REQ_CTX_add1_header(). OCSP_sendreq_bio() performs an OCSP request using the responder B, the URL -path B, the OCSP request B and with a response header maximum line -length of B. If B is zero a default value of 4k is used. +path B, and the OCSP request B with a response header maximum line +length 4k. It waits indefinitely on a response. =head1 RETURN VALUES