summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2025-03-15 15:17:41 +0000
committertb <>2025-03-15 15:17:41 +0000
commitf462dceafaba6df226ea5c9a06490a98786ded8b (patch)
tree098040b272742f9c3e3f69ac131697f2b171227e
parentfc76871045006eabab7ca20e523e96e5ce921aec (diff)
downloadopenbsd-f462dceafaba6df226ea5c9a06490a98786ded8b.tar.gz
openbsd-f462dceafaba6df226ea5c9a06490a98786ded8b.tar.bz2
openbsd-f462dceafaba6df226ea5c9a06490a98786ded8b.zip
Rename a bunch of confusingly named variables
Variables of the type serialized or deserialized are called val_in or val_out in all other manuals, so align this page to using those rather than the confusing X509_CRL **der_out, etc.
-rw-r--r--src/lib/libcrypto/man/d2i_X509_CRL.312
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libcrypto/man/d2i_X509_CRL.3 b/src/lib/libcrypto/man/d2i_X509_CRL.3
index 948c283b51..79c1ed9f8c 100644
--- a/src/lib/libcrypto/man/d2i_X509_CRL.3
+++ b/src/lib/libcrypto/man/d2i_X509_CRL.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: d2i_X509_CRL.3,v 1.9 2024/03/06 02:34:14 tb Exp $ 1.\" $OpenBSD: d2i_X509_CRL.3,v 1.10 2025/03/15 15:17:41 tb Exp $
2.\" 2.\"
3.\" Copyright (c) 2016, 2021 Ingo Schwarze <schwarze@openbsd.org> 3.\" Copyright (c) 2016, 2021 Ingo Schwarze <schwarze@openbsd.org>
4.\" 4.\"
@@ -14,7 +14,7 @@
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\" 16.\"
17.Dd $Mdocdate: March 6 2024 $ 17.Dd $Mdocdate: March 15 2025 $
18.Dt D2I_X509_CRL 3 18.Dt D2I_X509_CRL 3
19.Os 19.Os
20.Sh NAME 20.Sh NAME
@@ -45,22 +45,22 @@
45.Ft X509_CRL * 45.Ft X509_CRL *
46.Fo d2i_X509_CRL_bio 46.Fo d2i_X509_CRL_bio
47.Fa "BIO *in_bio" 47.Fa "BIO *in_bio"
48.Fa "X509_CRL **der_out" 48.Fa "X509_CRL **val_out"
49.Fc 49.Fc
50.Ft X509_CRL * 50.Ft X509_CRL *
51.Fo d2i_X509_CRL_fp 51.Fo d2i_X509_CRL_fp
52.Fa "FILE *in_fp" 52.Fa "FILE *in_fp"
53.Fa "X509_CRL **der_out" 53.Fa "X509_CRL **val_out"
54.Fc 54.Fc
55.Ft int 55.Ft int
56.Fo i2d_X509_CRL_bio 56.Fo i2d_X509_CRL_bio
57.Fa "BIO *out_bio" 57.Fa "BIO *out_bio"
58.Fa "X509_CRL *der_in" 58.Fa "X509_CRL *val_in"
59.Fc 59.Fc
60.Ft int 60.Ft int
61.Fo i2d_X509_CRL_fp 61.Fo i2d_X509_CRL_fp
62.Fa "FILE *out_fp" 62.Fa "FILE *out_fp"
63.Fa "X509_CRL *der_in" 63.Fa "X509_CRL *val_in"
64.Fc 64.Fc
65.Ft X509_CRL_INFO * 65.Ft X509_CRL_INFO *
66.Fo d2i_X509_CRL_INFO 66.Fo d2i_X509_CRL_INFO