From: tb Date: Fri, 23 Jun 2023 20:05:30 +0000 (+0000) Subject: Fix warning about empty ipAddressesOrRanges X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=acb5830702e870be705829cc2029e47cac207aae;p=openbsd Fix warning about empty ipAddressesOrRanges Committed from an older tree. --- diff --git a/usr.sbin/rpki-client/cert.c b/usr.sbin/rpki-client/cert.c index ecef2026d23..e9ca4840ccb 100644 --- a/usr.sbin/rpki-client/cert.c +++ b/usr.sbin/rpki-client/cert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cert.c,v 1.111 2023/06/23 07:40:28 tb Exp $ */ +/* $OpenBSD: cert.c,v 1.112 2023/06/23 20:05:30 tb Exp $ */ /* * Copyright (c) 2022 Theo Buehler * Copyright (c) 2021 Job Snijders @@ -377,7 +377,8 @@ sbgp_ipaddrblk(struct parse *p, X509_EXTENSION *ext) goto out; } if (ipsz == p->res->ipsz) { - warnx("%s: RFC 3779: empty ipAddressesOrRanges", p->fn); + warnx("%s: RFC 6487 section 4.8.10: " + "empty ipAddressesOrRanges", p->fn); goto out; }