summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@cvs.openbsd.org>2022-03-29 14:28:00 +0000
committerChristian Weisgerber <naddy@cvs.openbsd.org>2022-03-29 14:28:00 +0000
commit98cb55a57eb0c3008a22fcd154ea281ea7aa65ff (patch)
tree32d056ee0f9757ae2051eca404e15d642123e6a8
parent7607f3b4d1535e9d7084055e8bbcc80c89d49e87 (diff)
man pages: add missing commas in enumerations
-rw-r--r--lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.36
-rw-r--r--lib/libcrypto/man/d2i_ASN1_OCTET_STRING.36
-rw-r--r--lib/libm/man/tanh.36
-rw-r--r--lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.36
-rw-r--r--share/man/man3/queue.36
5 files changed, 15 insertions, 15 deletions
diff --git a/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 b/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3
index 547940e3eb6..8964d612b2e 100644
--- a/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3
+++ b/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: X509_VERIFY_PARAM_set_flags.3,v 1.23 2022/03/10 00:55:50 jsg Exp $
+.\" $OpenBSD: X509_VERIFY_PARAM_set_flags.3,v 1.24 2022/03/29 14:27:59 naddy Exp $
.\" full merge up to: OpenSSL d33def66 Feb 9 14:17:13 2016 -0500
.\" selective merge up to: OpenSSL 24a535ea Sep 22 13:14:20 2020 +0100
.\"
@@ -68,7 +68,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
.\" OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: March 10 2022 $
+.Dd $Mdocdate: March 29 2022 $
.Dt X509_VERIFY_PARAM_SET_FLAGS 3
.Os
.Sh NAME
@@ -676,7 +676,7 @@ first appeared in OpenSSL 0.9.8a.
All these functions have been available since
.Ox 4.5 .
.Pp
-.Fn X509_VERIFY_PARAM_get0_name
+.Fn X509_VERIFY_PARAM_get0_name ,
.Fn X509_VERIFY_PARAM_set1_host ,
.Fn X509_VERIFY_PARAM_add1_host ,
.Fn X509_VERIFY_PARAM_set_hostflags ,
diff --git a/lib/libcrypto/man/d2i_ASN1_OCTET_STRING.3 b/lib/libcrypto/man/d2i_ASN1_OCTET_STRING.3
index faccbe6ad97..a5d2eadb20d 100644
--- a/lib/libcrypto/man/d2i_ASN1_OCTET_STRING.3
+++ b/lib/libcrypto/man/d2i_ASN1_OCTET_STRING.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: d2i_ASN1_OCTET_STRING.3,v 1.16 2021/12/15 15:29:23 schwarze Exp $
+.\" $OpenBSD: d2i_ASN1_OCTET_STRING.3,v 1.17 2022/03/29 14:27:59 naddy Exp $
.\"
.\" Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: December 15 2021 $
+.Dd $Mdocdate: March 29 2022 $
.Dt D2I_ASN1_OCTET_STRING 3
.Os
.Sh NAME
@@ -449,7 +449,7 @@ Certificate Revocation List (CRL) Profile
.Fn d2i_ASN1_T61STRING ,
.Fn i2d_ASN1_T61STRING ,
.Fn d2i_ASN1_PRINTABLESTRING ,
-.Fn i2d_ASN1_PRINTABLESTRING
+.Fn i2d_ASN1_PRINTABLESTRING ,
.Fn d2i_ASN1_PRINTABLE ,
.Fn i2d_ASN1_PRINTABLE ,
.Fn d2i_ASN1_UTCTIME ,
diff --git a/lib/libm/man/tanh.3 b/lib/libm/man/tanh.3
index e78f01872f2..ab86f3a3fe0 100644
--- a/lib/libm/man/tanh.3
+++ b/lib/libm/man/tanh.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tanh.3,v 1.12 2013/07/17 05:42:11 schwarze Exp $
+.\" $OpenBSD: tanh.3,v 1.13 2022/03/29 14:27:59 naddy Exp $
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -28,7 +28,7 @@
.\"
.\" from: @(#)tanh.3 5.1 (Berkeley) 5/2/91
.\"
-.Dd $Mdocdate: July 17 2013 $
+.Dd $Mdocdate: March 29 2022 $
.Dt TANH 3
.Os
.Sh NAME
@@ -59,7 +59,7 @@ function is an extended precision version of
.Fn tanh .
.Sh RETURN VALUES
The
-.Fn tanh
+.Fn tanh ,
.Fn tanhf ,
and
.Fn tanhl
diff --git a/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 b/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3
index 0181634fe32..b4c3a3c6475 100644
--- a/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3
+++ b/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: SSL_CTX_set_tmp_rsa_callback.3,v 1.8 2018/03/27 17:35:50 schwarze Exp $
+.\" $OpenBSD: SSL_CTX_set_tmp_rsa_callback.3,v 1.9 2022/03/29 14:27:59 naddy Exp $
.\" OpenSSL 0b30fc90 Dec 19 15:23:05 2013 -0500
.\"
.\" This file was written by Lutz Jaenicke <jaenicke@openssl.org>.
@@ -48,7 +48,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
.\" OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: March 27 2018 $
+.Dd $Mdocdate: March 29 2022 $
.Dt SSL_CTX_SET_TMP_RSA_CALLBACK 3
.Os
.Sh NAME
@@ -106,7 +106,7 @@ and
first appeared in SSLeay 0.8.0 and have been available since
.Ox 2.4 .
.Pp
-.Fn SSL_set_tmp_rsa_callback
+.Fn SSL_set_tmp_rsa_callback ,
.Fn SSL_set_tmp_rsa ,
and
.Fn SSL_need_tmp_RSA
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3
index d9b0dafd9ad..9113a4968b7 100644
--- a/share/man/man3/queue.3
+++ b/share/man/man3/queue.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: queue.3,v 1.68 2020/12/30 13:33:38 millert Exp $
+.\" $OpenBSD: queue.3,v 1.69 2022/03/29 14:27:59 naddy Exp $
.\" $NetBSD: queue.3,v 1.4 1995/07/03 00:25:36 mycroft Exp $
.\"
.\" Copyright (c) 1993 The Regents of the University of California.
@@ -30,7 +30,7 @@
.\"
.\" @(#)queue.3 8.1 (Berkeley) 12/13/93
.\"
-.Dd $Mdocdate: December 30 2020 $
+.Dd $Mdocdate: March 29 2022 $
.Dt SLIST_INIT 3
.Os
.Sh NAME
@@ -928,7 +928,7 @@ it is permitted to remove var as well
as free it from within the loop safely without interfering with the traversal.
.Pp
The
-.Fn STAILQ_FIRST
+.Fn STAILQ_FIRST ,
.Fn STAILQ_NEXT ,
and
.Fn STAILQ_LAST