fix spelling of inheritance
authortb <tb@openbsd.org>
Sun, 26 Dec 2021 12:32:28 +0000 (12:32 +0000)
committertb <tb@openbsd.org>
Sun, 26 Dec 2021 12:32:28 +0000 (12:32 +0000)
usr.sbin/rpki-client/as.c
usr.sbin/rpki-client/cert.c
usr.sbin/rpki-client/ip.c
usr.sbin/rpki-client/validate.c

index a8f0383..88598a6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: as.c,v 1.6 2020/09/12 15:46:48 claudio Exp $ */
+/*     $OpenBSD: as.c,v 1.7 2021/12/26 12:32:28 tb Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -75,13 +75,13 @@ as_check_overlap(const struct cert_as *a, const char *fn,
 {
        size_t   i;
 
-       /* We can have only one inheritence statement. */
+       /* We can have only one inheritance statement. */
 
        if (asz &&
            (a->type == CERT_AS_INHERIT || as[0].type == CERT_AS_INHERIT)) {
                warnx("%s: RFC 3779 section 3.2.3.3: "
-                   "cannot have inheritence and multiple ASnum or "
-                   "multiple inheritence", fn);
+                   "cannot have inheritance and multiple ASnum or "
+                   "multiple inheritance", fn);
                return 0;
        }
 
index b23b5dd..a8ec879 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cert.c,v 1.48 2021/12/26 12:30:11 tb Exp $ */
+/*     $OpenBSD: cert.c,v 1.49 2021/12/26 12:32:28 tb Exp $ */
 /*
  * Copyright (c) 2021 Job Snijders <job@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -64,8 +64,8 @@ cert_init_oid(void)
 
 /*
  * Append an IP address structure to our list of results.
- * This will also constrain us to having at most one inheritence
- * statement per AFI and also not have overlapping rages (as prohibited
+ * This will also constrain us to having at most one inheritance
+ * statement per AFI and also not have overlapping ranges (as prohibited
  * in section 2.2.3.6).
  * It does not make sure that ranges can't coalesce, that is, that any
  * two ranges abut each other.
index 05b072a..8cbcf92 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip.c,v 1.20 2021/11/10 09:15:29 claudio Exp $ */
+/*     $OpenBSD: ip.c,v 1.21 2021/12/26 12:32:28 tb Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -129,7 +129,7 @@ ip_addr_check_overlap(const struct cert_ip *ip, const char *fn,
                                has_v6 = 1;
                }
 
-       /* Disallow multiple inheritence per type. */
+       /* Disallow multiple inheritance per type. */
 
        if ((inherit_v4 && ip->afi == AFI_IPV4) ||
            (inherit_v6 && ip->afi == AFI_IPV6) ||
@@ -138,7 +138,7 @@ ip_addr_check_overlap(const struct cert_ip *ip, const char *fn,
            (has_v6 && ip->afi == AFI_IPV6 &&
             ip->type == CERT_IP_INHERIT)) {
                warnx("%s: RFC 3779 section 2.2.3.5: "
-                   "cannot have multiple inheritence or inheritence and "
+                   "cannot have multiple inheritance or inheritance and "
                    "addresses of the same class", fn);
                return 0;
        }
index 6d44b65..9a9c932 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: validate.c,v 1.22 2021/11/04 11:32:55 claudio Exp $ */
+/*     $OpenBSD: validate.c,v 1.23 2021/12/26 12:32:28 tb Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -58,7 +58,7 @@ valid_as(struct auth *a, uint32_t min, uint32_t max)
 
 /*
  * Walk up the chain of certificates (really just the last one, but in
- * the case of inheritence, the ones before) making sure that our IP
+ * the case of inheritance, the ones before) making sure that our IP
  * prefix is covered in the first non-inheriting specification.
  * Returns 1 if covered or 0 if not.
  */