aboutsummaryrefslogtreecommitdiffstats
path: root/apps/x509.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-01-24 17:50:32 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-01-24 17:50:32 +0000
commit834eeef995bb3783550d11186f9d649aaacd43ac (patch)
treebdebcad3737b8a5da6b13f0f4f64b0a084dc382c /apps/x509.c
parent9aeaf1b4a7924cabf829bf57d0ca87d311cd2dfe (diff)
downloadopenssl-834eeef995bb3783550d11186f9d649aaacd43ac.tar.gz
Continuing adding X509 V3 support. This starts to integrate the code with
the main library, but only with printing at present. To see this try: openssl x509 -in cert.pem -text on a certificate with some extensions in it.
Diffstat (limited to 'apps/x509.c')
-rw-r--r--apps/x509.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/x509.c b/apps/x509.c
index fa8537e078..b375ffe32f 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -69,6 +69,7 @@
#include "bn.h"
#include "evp.h"
#include "x509.h"
+#include "x509v3.h"
#include "objects.h"
#include "pem.h"
@@ -305,7 +306,7 @@ bad:
}
ERR_load_crypto_strings();
- X509v3_add_netscape_extensions();
+ X509V3_add_standard_extensions();
if (!X509_STORE_set_default_paths(ctx))
{