Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-06 12:59:22 +0400
committerRichard Levitte <levitte@openssl.org>2002-06-06 12:59:22 +0400
commit64ed18ef201683b809f8630ebea81b3969151848 (patch)
tree6de26e54d3e3263b2d8630cc91151fd4571a7571 /demos
parent72645b83bb53db146f127f73e477e0e2f543c9c2 (diff)
Recent changes from 0.9.6-stable.
Diffstat (limited to 'demos')
-rw-r--r--demos/maurice/loadkeys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/maurice/loadkeys.c b/demos/maurice/loadkeys.c
index 0f3464753a..792371c264 100644
--- a/demos/maurice/loadkeys.c
+++ b/demos/maurice/loadkeys.c
@@ -33,7 +33,7 @@ EVP_PKEY * ReadPublicKey(const char *certfile)
x509 = (X509 *)PEM_ASN1_read ((char *(*)())d2i_X509,
PEM_STRING_X509,
- fp, NULL, NULL);
+ fp, NULL, NULL, NULL);
if (x509 == NULL)
{
@@ -64,7 +64,7 @@ EVP_PKEY *ReadPrivateKey(const char *keyfile)
pkey = (EVP_PKEY*)PEM_ASN1_read ((char *(*)())d2i_PrivateKey,
PEM_STRING_EVP_PKEY,
fp,
- NULL, NULL);
+ NULL, NULL, NULL);
fclose (fp);