diff options
author | job <job@cvs.openbsd.org> | 2021-03-28 16:22:18 +0000 |
---|---|---|
committer | job <job@cvs.openbsd.org> | 2021-03-28 16:22:18 +0000 |
commit | bf23ee514ad92d119a899918ef44a7805afc395a (patch) | |
tree | 065eb43f3a497fbe24eaaf04f536bf930685174c /regress | |
parent | 6003ef9293e3c3b72b8b62044a39f375e9f9db47 (diff) |
Add some restrictions to manifest object profile
OK tb@, feedback from claudio@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.sbin/rpki-client/test-mft.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/usr.sbin/rpki-client/test-mft.c b/regress/usr.sbin/rpki-client/test-mft.c index cab2d3c5763..6e48d1a66f6 100644 --- a/regress/usr.sbin/rpki-client/test-mft.c +++ b/regress/usr.sbin/rpki-client/test-mft.c @@ -1,4 +1,4 @@ -/* $Id: test-mft.c,v 1.11 2021/02/16 08:53:53 job Exp $ */ +/* $Id: test-mft.c,v 1.12 2021/03/28 16:22:17 job Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -55,6 +55,7 @@ mft_print(const struct mft *p) printf("Subject key identifier: %s\n", p->ski); printf("Authority key identifier: %s\n", p->aki); printf("Authority info access: %s\n", p->aia); + printf("Manifest Number: %s\n", p->seqnum); for (i = 0; i < p->filesz; i++) { b64_ntop(p->files[i].hash, sizeof(p->files[i].hash), hash, sizeof(hash)); |