summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-06-10 11:49:30 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-06-10 11:49:30 +0000
commitf8e513c330e0638348d655d61e10e1b74b17f0c8 (patch)
treeaf8d314787acb7466e1666e340286633dacd5d07 /usr.sbin
parenta95afaa06add7d6fe321380f88203c580c7084cd (diff)
rpki-client: zap outdated comment.
The valid_x509() in proc_parser_gbr() was initially left unchecked but has been checked since r1.79.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/rpki-client/parser.c3
1 files changed, 1 insertions, 2 deletions
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 <claudio@openbsd.org>
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -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);