From: tb Date: Wed, 28 Jun 2023 17:24:20 +0000 (+0000) Subject: The warning noise due to the ASPA transition is just that: noise. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a2bb66a350deaaa0040418bda60eb9b60370d373;p=openbsd The warning noise due to the ASPA transition is just that: noise. Switch to warnx() instead of cryptowarnx() for now. ok job --- diff --git a/usr.sbin/rpki-client/aspa.c b/usr.sbin/rpki-client/aspa.c index 07448fabe9f..35c8ffa5154 100644 --- a/usr.sbin/rpki-client/aspa.c +++ b/usr.sbin/rpki-client/aspa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aspa.c,v 1.19 2023/06/26 18:39:53 job Exp $ */ +/* $OpenBSD: aspa.c,v 1.20 2023/06/28 17:24:20 tb Exp $ */ /* * Copyright (c) 2022 Job Snijders * Copyright (c) 2022 Theo Buehler @@ -133,8 +133,7 @@ aspa_parse_econtent(const unsigned char *d, size_t dsz, struct parse *p) int rc = 0; if ((aspa = d2i_ASProviderAttestation(NULL, &d, dsz)) == NULL) { - cryptowarnx("%s: ASPA: failed to parse ASProviderAttestation", - p->fn); + warnx("%s: ASPA: failed to parse ASProviderAttestation", p->fn); goto out; }