summaryrefslogtreecommitdiffstats
path: root/doc/openssl.txt
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-08-11 13:08:58 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-08-11 13:08:58 +0000
commitfd52057729fcf050734882069e6fa3f02b555cd2 (patch)
tree1dc6553e5ffd1b7b9eb11ce5178abb0175a55285 /doc/openssl.txt
parent8b94634428fc4dd07e2946bde3ed6d1686605e5d (diff)
Add functions to allow extensions to be added to certificate requests.
Modify obj_dat.pl to take its files from the command line. Usage is now perl obj_dat.pl objects.h obj_dat.h this should avoid redirection shell escape problems under Win32.
Diffstat (limited to 'doc/openssl.txt')
-rw-r--r--doc/openssl.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/openssl.txt b/doc/openssl.txt
index 2f50038d17..2a84be420a 100644
--- a/doc/openssl.txt
+++ b/doc/openssl.txt
@@ -561,7 +561,7 @@ takes the NID of the extension rather than its name.
For example to produce basicConstraints with the CA flag and a path length of
10:
-x = X509V3_EXT_conf_nid(NULL, NULL, NID_basicConstraints, "CA:TRUE,pathlen:10");
+x = X509V3_EXT_conf_nid(NULL, NULL, NID_basic_constraints,"CA:TRUE,pathlen:10");
X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc);