summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-06-23 20:05:31 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-06-23 20:05:31 +0000
commit3c623a9d56b765c5bd8fdae9a6aad437c93bec0a (patch)
treeb7bef8ccd33dd7c6234abe78895883a5ba1ba689 /usr.sbin
parentc40b58d41e21ee199aa8ec38bb2e8df9c137db39 (diff)
Fix warning about empty ipAddressesOrRanges
Committed from an older tree.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/rpki-client/cert.c5
1 files changed, 3 insertions, 2 deletions
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 <tb@openbsd.org>
* Copyright (c) 2021 Job Snijders <job@openbsd.org>
@@ -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;
}