From: slontis Date: Mon, 30 May 2022 04:37:53 +0000 (+1000) Subject: Fix documentation for some i2d return values. X-Git-Tag: openssl-3.2.0-alpha1~1796 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=943051d0f9ce8dcb38707774a5757a5dc436704f;p=thirdparty%2Fopenssl.git Fix documentation for some i2d return values. i2d_XXX_bio and i2d_XXX_fp return either 0 or 1. Other i2d_XXX functions return the number of bytes or negative on error. Reviewed-by: Hugo Landau Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/18427) --- diff --git a/doc/man3/OSSL_CMP_MSG_get0_header.pod b/doc/man3/OSSL_CMP_MSG_get0_header.pod index 6fc620f83b3..c3297a3577a 100644 --- a/doc/man3/OSSL_CMP_MSG_get0_header.pod +++ b/doc/man3/OSSL_CMP_MSG_get0_header.pod @@ -118,10 +118,11 @@ d2i_OSSL_CMP_MSG_bio() returns the parsed message or NULL on error. OSSL_CMP_MSG_read() and d2i_OSSL_CMP_MSG_bio() return the parsed CMP message or NULL on error. -OSSL_CMP_MSG_write() and i2d_OSSL_CMP_MSG_bio() return -the number of bytes successfully encoded or a negative value if an error occurs. +OSSL_CMP_MSG_write() returns the number of bytes successfully encoded or a +negative value if an error occurs. -OSSL_CMP_MSG_update_transactionID() returns 1 on success, 0 on error. +i2d_OSSL_CMP_MSG_bio() and OSSL_CMP_MSG_update_transactionID() return 1 on +success, 0 on error. =head1 SEE ALSO diff --git a/doc/man3/d2i_PrivateKey.pod b/doc/man3/d2i_PrivateKey.pod index aac92336c3d..fe78d5bc6f1 100644 --- a/doc/man3/d2i_PrivateKey.pod +++ b/doc/man3/d2i_PrivateKey.pod @@ -103,14 +103,15 @@ EC_GROUP. The d2i_PrivateKey_ex(), d2i_PrivateKey(), d2i_AutoPrivateKey_ex(), d2i_AutoPrivateKey(), d2i_PrivateKey_ex_bio(), d2i_PrivateKey_bio(), d2i_PrivateKey_ex_fp(), d2i_PrivateKey_fp(), d2i_PublicKey(), d2i_KeyParams() -and d2i_KeyParams_bio() functions return a valid B structure or NULL -if an error occurs. The error code can be obtained by calling -L. - -i2d_PrivateKey(), i2d_PrivateKey_bio(), i2d_PrivateKey_fp(), i2d_PublicKey(), -i2d_KeyParams() i2d_KeyParams_bio() return the number of bytes successfully -encoded or a negative value if an error occurs. The error code can be obtained -by calling L. +and d2i_KeyParams_bio() functions return a valid B structure or NULL if +an error occurs. The error code can be obtained by calling L. + +i2d_PrivateKey(), i2d_PublicKey() and i2d_KeyParams() return the number of +bytes successfully encoded or a negative value if an error occurs. The error +code can be obtained by calling L. + +i2d_PrivateKey_bio(), i2d_PrivateKey_fp() and i2d_KeyParams_bio() return 1 if +successfully encoded or zero if an error occurs. =head1 SEE ALSO