From: Matt Caswell Date: Thu, 6 Jun 2019 11:14:59 +0000 (+0100) Subject: Fix an incorrect macro X-Git-Tag: OpenSSL_1_1_1e~183 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7bcd13cebd9ebc6cf6026fff999beb34504a8068;p=oweals%2Fopenssl.git Fix an incorrect macro A macro was missing a space which was confusing find-doc-nits Reviewed-by: Richard Levitte (cherry picked from commit 8caab503ba004abb555d636c1ca9f7bcde79657f) Reviewed-by: Tomas Mraz Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/10094) --- diff --git a/include/openssl/ocsp.h b/include/openssl/ocsp.h index 8582fe1ee1..4d759a49de 100644 --- a/include/openssl/ocsp.h +++ b/include/openssl/ocsp.h @@ -123,7 +123,7 @@ typedef struct ocsp_service_locator_st OCSP_SERVICELOC; (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST, \ bp,(char **)(x),cb,NULL) -# define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\ +# define PEM_read_bio_OCSP_RESPONSE(bp,x,cb) (OCSP_RESPONSE *)PEM_ASN1_read_bio(\ (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE, \ bp,(char **)(x),cb,NULL)