summaryrefslogtreecommitdiff
path: root/lib/libcrypto/man/X509_STORE_CTX_new.3
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2016-12-03 13:36:04 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2016-12-03 13:36:04 +0000
commit26d63a17c286e8ec40fbbc625bd8825c956bd425 (patch)
tree576d015b120b6f48b956c17eec745bc3a59153e9 /lib/libcrypto/man/X509_STORE_CTX_new.3
parent7f8975d90defd8db2df875828bb5e04bed501b4f (diff)
various cleanup;
Diffstat (limited to 'lib/libcrypto/man/X509_STORE_CTX_new.3')
-rw-r--r--lib/libcrypto/man/X509_STORE_CTX_new.312
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libcrypto/man/X509_STORE_CTX_new.3 b/lib/libcrypto/man/X509_STORE_CTX_new.3
index ffb50b6564e..ae88020e77b 100644
--- a/lib/libcrypto/man/X509_STORE_CTX_new.3
+++ b/lib/libcrypto/man/X509_STORE_CTX_new.3
@@ -1,6 +1,6 @@
-.\" $OpenBSD: X509_STORE_CTX_new.3,v 1.2 2016/11/06 15:52:50 jmc Exp $
+.\" $OpenBSD: X509_STORE_CTX_new.3,v 1.3 2016/12/03 13:36:03 jmc Exp $
.\"
-.Dd $Mdocdate: November 6 2016 $
+.Dd $Mdocdate: December 3 2016 $
.Dt X509_STORE_CTX_NEW 3
.Os
.Sh NAME
@@ -84,7 +84,7 @@ structure.
internally cleans up an
.Vt X509_STORE_CTX
structure.
-The context can then be reused with an new call to
+The context can then be reused with a new call to
.Fn X509_STORE_CTX_init .
.Pp
.Fn X509_STORE_CTX_free
@@ -144,7 +144,6 @@ structure.
This might be used where additional "useful" CRLs are supplied as part
of a protocol, for example in a PKCS#7 structure.
.Pp
-X509_VERIFY_PARAM
.Fn X509_STORE_CTX_get0_param
retrieves an internal pointer to the verification parameters associated
with
@@ -180,7 +179,8 @@ X509_STORE_CTX_init(&ctx, store, cert, chain);
.Pp
This is
.Sy not
-recommended in new applications they should instead do:
+recommended in new applications.
+They should instead do:
.Bd -literal -offset indent
X509_STORE_CTX *ctx;
ctx = X509_STORE_CTX_new();
@@ -190,7 +190,7 @@ X509_STORE_CTX_init(ctx, store, cert, chain);
.Ed
.Sh RETURN VALUES
.Fn X509_STORE_CTX_new
-returns an newly allocates context or
+returns a newly allocated context or
.Dv NULL
if an error occurred.
.Pp