Move sbgp_addr() down to the other sbgp_addr_* functions.
authortb <tb@openbsd.org>
Wed, 11 May 2022 09:07:04 +0000 (09:07 +0000)
committertb <tb@openbsd.org>
Wed, 11 May 2022 09:07:04 +0000 (09:07 +0000)
ok claudio job

usr.sbin/rpki-client/cert.c

index 26700bf..c2be7c0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cert.c,v 1.75 2022/05/11 08:59:00 tb Exp $ */
+/*     $OpenBSD: cert.c,v 1.76 2022/05/11 09:07:04 tb Exp $ */
 /*
  * Copyright (c) 2021 Job Snijders <job@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -94,28 +94,6 @@ append_as(struct parse *p, const struct cert_as *as)
        return 1;
 }
 
-/*
- * Construct a RFC 3779 2.2.3.8 range from its bit string.
- * Returns zero on failure, non-zero on success.
- */
-static int
-sbgp_addr(struct parse *p, struct cert_ip *ip, const ASN1_BIT_STRING *bs)
-{
-       if (!ip_addr_parse(bs, ip->afi, p->fn, &ip->ip)) {
-               warnx("%s: RFC 3779 section 2.2.3.8: IPAddress: "
-                   "invalid IP address", p->fn);
-               return 0;
-       }
-
-       if (!ip_cert_compose_ranges(ip)) {
-               warnx("%s: RFC 3779 section 2.2.3.8: IPAddress: "
-                   "IP address range reversed", p->fn);
-               return 0;
-       }
-
-       return append_ip(p, ip);
-}
-
 /*
  * Parse a range of addresses as in 3.2.3.8.
  * Returns zero on failure, non-zero on success.
@@ -269,6 +247,28 @@ sbgp_assysnum(struct parse *p, X509_EXTENSION *ext)
        return rc;
 }
 
+/*
+ * Construct a RFC 3779 2.2.3.8 range from its bit string.
+ * Returns zero on failure, non-zero on success.
+ */
+static int
+sbgp_addr(struct parse *p, struct cert_ip *ip, const ASN1_BIT_STRING *bs)
+{
+       if (!ip_addr_parse(bs, ip->afi, p->fn, &ip->ip)) {
+               warnx("%s: RFC 3779 section 2.2.3.8: IPAddress: "
+                   "invalid IP address", p->fn);
+               return 0;
+       }
+
+       if (!ip_cert_compose_ranges(ip)) {
+               warnx("%s: RFC 3779 section 2.2.3.8: IPAddress: "
+                   "IP address range reversed", p->fn);
+               return 0;
+       }
+
+       return append_ip(p, ip);
+}
+
 /*
  * Parse RFC 3779 2.2.3.9 range of addresses.
  * Returns zero on failure, non-zero on success.