From: tb Date: Mon, 10 Jun 2024 11:49:29 +0000 (+0000) Subject: rpki-client: zap outdated comment. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=473223040d1e4e98ce0075400af1eb4715ff9a74;p=openbsd rpki-client: zap outdated comment. The valid_x509() in proc_parser_gbr() was initially left unchecked but has been checked since r1.79. --- diff --git a/usr.sbin/rpki-client/parser.c b/usr.sbin/rpki-client/parser.c index 10f7975a917..b79ac3f4d73 100644 --- a/usr.sbin/rpki-client/parser.c +++ b/usr.sbin/rpki-client/parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.c,v 1.139 2024/06/07 13:24:35 tb Exp $ */ +/* $OpenBSD: parser.c,v 1.140 2024/06/10 11:49:29 tb Exp $ */ /* * Copyright (c) 2019 Claudio Jeker * Copyright (c) 2019 Kristaps Dzonsons @@ -686,7 +686,6 @@ proc_parser_gbr(char *file, const unsigned char *der, size_t len, a = find_issuer(file, entp->certid, gbr->aki, entp->mftaki); crl = crl_get(&crlt, a); - /* return value can be ignored since nothing happens here */ if (!valid_x509(file, ctx, x509, a, crl, &errstr)) { warnx("%s: %s", file, errstr); X509_free(x509);