diff options
author | Job Snijders <job@cvs.openbsd.org> | 2024-01-23 09:32:58 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2024-01-23 09:32:58 +0000 |
commit | 66d84113d12ded3ad9e4193c42e359b57a5e4d52 (patch) | |
tree | 941b47734a554155defbc4a13f0a5c0cbef50f30 | |
parent | 115c03f24ab0106b4038744ffd276e5ce2903924 (diff) |
Warn about overclaiming intermediate CAs, but don't error
OK tb@
-rw-r--r-- | usr.sbin/rpki-client/filemode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/filemode.c b/usr.sbin/rpki-client/filemode.c index 01fd1a26391..7532b68c363 100644 --- a/usr.sbin/rpki-client/filemode.c +++ b/usr.sbin/rpki-client/filemode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: filemode.c,v 1.36 2023/10/13 12:06:49 job Exp $ */ +/* $OpenBSD: filemode.c,v 1.37 2024/01/23 09:32:57 job Exp $ */ /* * Copyright (c) 2019 Claudio Jeker <claudio@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> @@ -477,7 +477,7 @@ proc_parser_file(char *file, unsigned char *buf, size_t len) cert_free(eecert); } else if (status) { cert->talid = a->cert->talid; - status = constraints_validate(file, cert); + constraints_validate(file, cert); } } else if (is_ta) { if ((tal = find_tal(cert)) != NULL) { |