diff options
author | Job Snijders <job@cvs.openbsd.org> | 2022-11-26 16:42:05 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2022-11-26 16:42:05 +0000 |
commit | 6303db8372416d0297e61b3d4f1760d1ce45e8c9 (patch) | |
tree | 0f134a87847e04330ef40751c2de19630ad3e1ea /usr.sbin | |
parent | c8d58662f227a7ae1b398f2086ac248f7271f54c (diff) |
Fix warning message
(Geofeed authenticators don't have a SIA)
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/geofeed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/geofeed.c b/usr.sbin/rpki-client/geofeed.c index dee17c933d3..d555dd1e493 100644 --- a/usr.sbin/rpki-client/geofeed.c +++ b/usr.sbin/rpki-client/geofeed.c @@ -1,4 +1,4 @@ -/* $OpenBSD: geofeed.c,v 1.2 2022/11/26 15:45:47 tb Exp $ */ +/* $OpenBSD: geofeed.c,v 1.3 2022/11/26 16:42:04 job Exp $ */ /* * Copyright (c) 2022 Job Snijders <job@fastly.com> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> @@ -233,7 +233,7 @@ geofeed_parse(X509 **x509, const char *fn, char *buf, size_t len) goto out; if (p.res->aia == NULL || p.res->aki == NULL || p.res->ski == NULL) { - warnx("%s: missing AIA, AKI, SIA, or SKI X509 extension", fn); + warnx("%s: missing AIA, AKI, or SKI X509 extension", fn); goto out; } |