summaryrefslogtreecommitdiffstats
path: root/doc/crypto/d2i_X509.pod
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-06-09 07:56:18 +0000
committerRichard Levitte <levitte@openssl.org>2003-06-09 07:56:18 +0000
commit40e5b9abeb5993e5411b35e2e473f9f8c36ebc3e (patch)
treed92b9c38450762c483d9d5e2675d118d388168ee /doc/crypto/d2i_X509.pod
parentdcfb57c736c2591c80b40d40e5f3a664882fb738 (diff)
Typo
Diffstat (limited to 'doc/crypto/d2i_X509.pod')
-rw-r--r--doc/crypto/d2i_X509.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/d2i_X509.pod b/doc/crypto/d2i_X509.pod
index 5e3c3d0985..e8e946e18a 100644
--- a/doc/crypto/d2i_X509.pod
+++ b/doc/crypto/d2i_X509.pod
@@ -23,13 +23,13 @@ i2d_X509_fp - X509 encode and decode functions
The X509 encode and decode routines encode and parse an
B<X509> structure, which represents an X509 certificate.
-d2i_X509() attempts to decode B<len> bytes at B<*out>. If
+d2i_X509() attempts to decode B<len> bytes at B<*in>. If
successful a pointer to the B<X509> structure is returned. If an error
occurred then B<NULL> is returned. If B<px> is not B<NULL> then the
returned structure is written to B<*px>. If B<*px> is not B<NULL>
then it is assumed that B<*px> contains a valid B<X509>
structure and an attempt is made to reuse it. If the call is
-successful B<*out> is incremented to the byte following the
+successful B<*in> is incremented to the byte following the
parsed data.
i2d_X509() encodes the structure pointed to by B<x> into DER format.