Typos.
authorDr. Stephen Henson <steve@openssl.org>
Sat, 20 Dec 2003 22:48:21 +0000 (22:48 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Sat, 20 Dec 2003 22:48:21 +0000 (22:48 +0000)
doc/crypto/pem.pod

index a4f8cc33376a555051e6a6679c24947e444560e5..8613114452e8a7182e4591dde102e48eb5db1ea8 100644 (file)
@@ -330,7 +330,7 @@ most of them are set to 0 or NULL.
 Read a certificate in PEM format from a BIO:
 
  X509 *x;
- x = PEM_read_bio(bp, NULL, 0, NULL);
+ x = PEM_read_bio_X509(bp, NULL, 0, NULL);
  if (x == NULL)
        {
        /* Error */
@@ -459,12 +459,12 @@ returned by EVP_bytestokey().
 The PEM read routines in some versions of OpenSSL will not correctly reuse
 an existing structure. Therefore the following:
 
- PEM_read_bio(bp, &x, 0, NULL);
+ PEM_read_bio_X509(bp, &x, 0, NULL);
 
 where B<x> already contains a valid certificate, may not work, whereas: 
 
  X509_free(x);
- x = PEM_read_bio(bp, NULL, 0, NULL);
+ x = PEM_read_bio_X509(bp, NULL, 0, NULL);
 
 is guaranteed to work.