diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-09-30 14:29:42 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-09-30 14:29:42 +0000 |
commit | a5eb476e65307d4283396fc914f3a92937508de7 (patch) | |
tree | 5e8f693155939f5b493235dc675c922c8f7ee009 | |
parent | ecd6c1e010c4d9ec519164cf057d72fa8994ff70 (diff) |
avoid using the string "a" without markup as a placeholder
where that feels potentially confusing,
and add one missing .Pp macro; no change of meaning
-rw-r--r-- | lib/libcrypto/man/X509v3_asid_add_id_or_range.3 | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/libcrypto/man/X509v3_asid_add_id_or_range.3 b/lib/libcrypto/man/X509v3_asid_add_id_or_range.3 index f6b1c0347f0..cc3b36deb1b 100644 --- a/lib/libcrypto/man/X509v3_asid_add_id_or_range.3 +++ b/lib/libcrypto/man/X509v3_asid_add_id_or_range.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: X509v3_asid_add_id_or_range.3,v 1.7 2023/09/29 08:57:49 tb Exp $ +.\" $OpenBSD: X509v3_asid_add_id_or_range.3,v 1.8 2023/09/30 14:29:41 schwarze Exp $ .\" .\" Copyright (c) 2021-2023 Theo Buehler <tb@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: September 29 2023 $ +.Dd $Mdocdate: September 30 2023 $ .Dt X509V3_ASID_ADD_ID_OR_RANGE 3 .Os .Sh NAME @@ -163,6 +163,7 @@ Ranges must not overlap, .\" contain at least two elements, and adjacent ranges must be fully merged. .El +.Pp .Fn X509v3_asid_canonize merges adjacent ranges but refuses to merge overlapping ranges or to discard duplicates. @@ -286,8 +287,12 @@ arguments on failure. .Pp RFC 3779 does not explicitly disallow ranges where the minimum is equal to the maximum. -The isolated AS identifier a and -the AS range [a,a] where the minimum and the maximum are equal to a +The isolated AS identifier +.Fa min +and the AS range +.Bq Fa min , Ns Fa min +where the minimum and the maximum are equal to +.Fa min have the same semantics. .Fn X509v3_asid_is_canonical accepts both representations as valid and |