From: job Date: Sat, 26 Nov 2022 16:42:04 +0000 (+0000) Subject: Fix warning message X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=61b772202fd5a7d35e71ee7e5abaa136e6b4fcaf;p=openbsd Fix warning message (Geofeed authenticators don't have a SIA) --- 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 * Copyright (c) 2019 Kristaps Dzonsons @@ -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; }