From: tb Date: Thu, 6 Jun 2024 07:20:15 +0000 (+0000) Subject: rpki-client: fix RFC section references in ta_parse() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4fdd5861ce320c6c2e70c3f7373326bac42ebe9f;p=openbsd rpki-client: fix RFC section references in ta_parse() ok claudio --- diff --git a/usr.sbin/rpki-client/cert.c b/usr.sbin/rpki-client/cert.c index ff662ce1a35..83c7e42051a 100644 --- a/usr.sbin/rpki-client/cert.c +++ b/usr.sbin/rpki-client/cert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cert.c,v 1.137 2024/06/06 03:29:52 tb Exp $ */ +/* $OpenBSD: cert.c,v 1.138 2024/06/06 07:20:15 tb Exp $ */ /* * Copyright (c) 2022 Theo Buehler * Copyright (c) 2021 Job Snijders @@ -1103,17 +1103,17 @@ ta_parse(const char *fn, struct cert *p, const unsigned char *pkey, goto badcert; } if (p->aki != NULL && strcmp(p->aki, p->ski)) { - warnx("%s: RFC 6487 section 8.4.2: " + warnx("%s: RFC 6487 section 4.8.3: " "trust anchor AKI, if specified, must match SKI", fn); goto badcert; } if (p->aia != NULL) { - warnx("%s: RFC 6487 section 8.4.7: " + warnx("%s: RFC 6487 section 4.8.7: " "trust anchor must not have AIA", fn); goto badcert; } if (p->crl != NULL) { - warnx("%s: RFC 6487 section 8.4.2: " + warnx("%s: RFC 6487 section 4.8.6: " "trust anchor may not specify CRL resource", fn); goto badcert; }