untrusted comment: verify with openbsd-69-base.pub RWQQsAemppS46HsKGLUYB0Ht2JP5w3XH8D2S8TY73oq3f2cIR/rQgEaOd8L2ghLvMiltUyJOPf2tvmUEg5QD0NmEO2EtibtVcws= OpenBSD 6.9 errata 023, December 7, 2021: Errata 021 broke rpki-client(8) compatibility with bgpd(8) Apply by doing: signify -Vep /etc/signify/openbsd-69-base.pub -x 023_rpki.patch.sig \ -m - | (cd /usr/src && patch -p0) And then rebuild and install rpki-client cd /usr/src/usr.sbin/rpki-client make obj make make install Index: usr.sbin/rpki-client/output-bgpd.c =================================================================== RCS file: /cvs/src/usr.sbin/rpki-client/output-bgpd.c,v diff -u -p -u -r1.20.2.1 output-bgpd.c --- usr.sbin/rpki-client/output-bgpd.c 9 Nov 2021 13:41:19 -0000 1.20.2.1 +++ usr.sbin/rpki-client/output-bgpd.c 5 Dec 2021 15:33:07 -0000 @@ -42,8 +42,8 @@ output_bgpd(FILE *out, struct vrp_tree * return -1; } else maxlenbuf[0] = '\0'; - if (fprintf(out, "\t%s %ssource-as %u expires %lld\n", - ipbuf, maxlenbuf, v->asid, (long long)v->expires) < 0) + if (fprintf(out, "\t%s %ssource-as %u\n", + ipbuf, maxlenbuf, v->asid) < 0) return -1; }