From 62f46ccdbb5c069b11061bc5e8b0d67f20b04484 Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 2 Feb 2024 18:22:45 +0000 Subject: [PATCH] fix previous: a *mp = mft1 got lost ok job --- usr.sbin/rpki-client/parser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.sbin/rpki-client/parser.c b/usr.sbin/rpki-client/parser.c index b7971540b6c..09d65ae88a5 100644 --- a/usr.sbin/rpki-client/parser.c +++ b/usr.sbin/rpki-client/parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.c,v 1.121 2024/02/02 18:11:12 job Exp $ */ +/* $OpenBSD: parser.c,v 1.122 2024/02/02 18:22:45 tb Exp $ */ /* * Copyright (c) 2019 Claudio Jeker * Copyright (c) 2019 Kristaps Dzonsons @@ -436,6 +436,7 @@ proc_parser_mft(struct entity *entp, struct mft **mp, char **crlfile, "with #%s from cache", file2, mft2->seqnum); } + *mp = mft1; } else { /* XXX - preserve behavior; this is probably wrong. */ *mp = mft1; -- 2.20.1