diff options
author | jsg <> | 2023-03-18 08:20:20 +0000 |
---|---|---|
committer | jsg <> | 2023-03-18 08:20:20 +0000 |
commit | 84f3ea7b91c095ce2c1a6e4cf4d19aca2a480e3d (patch) | |
tree | 695da3d8be6a661cba40339e9d68ff3bcdefb1ef | |
parent | 0c509da702fafab904a8bdffdc414d704b9379d9 (diff) | |
download | openbsd-84f3ea7b91c095ce2c1a6e4cf4d19aca2a480e3d.tar.gz openbsd-84f3ea7b91c095ce2c1a6e4cf4d19aca2a480e3d.tar.bz2 openbsd-84f3ea7b91c095ce2c1a6e4cf4d19aca2a480e3d.zip |
fixes for mandoc -Tlint
ok tb@
-rw-r--r-- | src/lib/libcrypto/man/X509_STORE_CTX_set_verify.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/man/X509_STORE_CTX_set_verify.3 b/src/lib/libcrypto/man/X509_STORE_CTX_set_verify.3 index c67e5bd524..b2febbde2d 100644 --- a/src/lib/libcrypto/man/X509_STORE_CTX_set_verify.3 +++ b/src/lib/libcrypto/man/X509_STORE_CTX_set_verify.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: X509_STORE_CTX_set_verify.3,v 1.5 2023/03/16 15:45:38 job Exp $ | 1 | .\" $OpenBSD: X509_STORE_CTX_set_verify.3,v 1.6 2023/03/18 08:20:20 jsg Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 2021, 2022 Ingo Schwarze <schwarze@openbsd.org> | 3 | .\" Copyright (c) 2021, 2022 Ingo Schwarze <schwarze@openbsd.org> |
4 | .\" | 4 | .\" |
@@ -14,7 +14,7 @@ | |||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | .\" | 16 | .\" |
17 | .Dd $Mdocdate: March 16 2023 $ | 17 | .Dd $Mdocdate: March 18 2023 $ |
18 | .Dt X509_STORE_CTX_SET_VERIFY 3 | 18 | .Dt X509_STORE_CTX_SET_VERIFY 3 |
19 | .Os | 19 | .Os |
20 | .Sh NAME | 20 | .Sh NAME |
@@ -31,7 +31,7 @@ | |||
31 | .Sh SYNOPSIS | 31 | .Sh SYNOPSIS |
32 | .In openssl/x509_vfy.h | 32 | .In openssl/x509_vfy.h |
33 | .Ft typedef int | 33 | .Ft typedef int |
34 | .Fo "(*X509_STORE_CTX_verify_fn)" | 34 | .Fo (*X509_STORE_CTX_verify_fn) |
35 | .Fa "X509_STORE_CTX *ctx" | 35 | .Fa "X509_STORE_CTX *ctx" |
36 | .Fc | 36 | .Fc |
37 | .Ft void | 37 | .Ft void |
@@ -58,7 +58,7 @@ | |||
58 | .Fa "X509_STORE_CTX *ctx" | 58 | .Fa "X509_STORE_CTX *ctx" |
59 | .Fc | 59 | .Fc |
60 | .Ft typedef int | 60 | .Ft typedef int |
61 | .Fo "(*X509_STORE_CTX_check_issued_fn) | 61 | .Fo (*X509_STORE_CTX_check_issued_fn) |
62 | .Fa "X509_STORE_CTX *ctx" | 62 | .Fa "X509_STORE_CTX *ctx" |
63 | .Fa "X509 *subject" | 63 | .Fa "X509 *subject" |
64 | .Fa "X509 *issuer" | 64 | .Fa "X509 *issuer" |
@@ -185,6 +185,7 @@ used in | |||
185 | .Xr X509_STORE_CTX_init 3 | 185 | .Xr X509_STORE_CTX_init 3 |
186 | or the library's default implementation. | 186 | or the library's default implementation. |
187 | .Sh SEE ALSO | 187 | .Sh SEE ALSO |
188 | .Xr X509_check_issued 3 , | ||
188 | .Xr X509_STORE_CTX_init 3 , | 189 | .Xr X509_STORE_CTX_init 3 , |
189 | .Xr X509_STORE_CTX_set_error 3 , | 190 | .Xr X509_STORE_CTX_set_error 3 , |
190 | .Xr X509_STORE_CTX_set_flags 3 , | 191 | .Xr X509_STORE_CTX_set_flags 3 , |
@@ -194,7 +195,6 @@ or the library's default implementation. | |||
194 | .Xr X509_STORE_set_verify_cb 3 , | 195 | .Xr X509_STORE_set_verify_cb 3 , |
195 | .Xr X509_verify_cert 3 , | 196 | .Xr X509_verify_cert 3 , |
196 | .Xr X509_VERIFY_PARAM_set_flags 3 | 197 | .Xr X509_VERIFY_PARAM_set_flags 3 |
197 | .Xr X509_check_issued 3 | ||
198 | .Sh HISTORY | 198 | .Sh HISTORY |
199 | .Fn X509_STORE_set_verify_func | 199 | .Fn X509_STORE_set_verify_func |
200 | first appeared in SSLeay 0.8.0 and has been available since | 200 | first appeared in SSLeay 0.8.0 and has been available since |