From 5a8c1e42f6572ee9ffb483933d64169e9e450a61 Mon Sep 17 00:00:00 2001 From: claudio Date: Wed, 13 Oct 2021 06:56:07 +0000 Subject: [PATCH] Fix regress test after changing the way bgpsec pubkeys are shown and processed. Reported by anton@ --- regress/usr.sbin/rpki-client/test-cert.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/regress/usr.sbin/rpki-client/test-cert.c b/regress/usr.sbin/rpki-client/test-cert.c index f7385d4f84e..9c80df6d587 100644 --- a/regress/usr.sbin/rpki-client/test-cert.c +++ b/regress/usr.sbin/rpki-client/test-cert.c @@ -1,4 +1,4 @@ -/* $Id: test-cert.c,v 1.12 2021/10/11 17:32:27 job Exp $ */ +/* $Id: test-cert.c,v 1.13 2021/10/13 06:56:07 claudio Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * @@ -57,8 +57,8 @@ cert_print(const struct cert *p) printf("caRepository: %s\n", p->repo); if (p->notify != NULL) printf("Notify URL: %s\n", p->notify); - if (p->bgpsec_pubkey != NULL) - printf("BGPsec P-256 ECDSA public key: %s\n", p->bgpsec_pubkey); + if (p->pubkey != NULL) + printf("BGPsec P-256 ECDSA public key: %s\n", p->pubkey); strftime(tbuf, sizeof(tbuf), "%FT%TZ", gmtime(&p->expires)); printf("Valid until: %s\n", tbuf); -- 2.20.1