diff options
author | Job Snijders <job@cvs.openbsd.org> | 2023-04-20 15:12:20 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2023-04-20 15:12:20 +0000 |
commit | aeac220faecea6c85ac000a15af7c81123a150b5 (patch) | |
tree | ff3ffd575a5c601bb79dd8a16dd34d6aa59cadb4 | |
parent | 93ae6aaf9d2598f246e789ebc939e282803e75ab (diff) |
Consistent casing
-rw-r--r-- | usr.sbin/rpki-client/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/print.c b/usr.sbin/rpki-client/print.c index f56ebdc8b62..e721937ac84 100644 --- a/usr.sbin/rpki-client/print.c +++ b/usr.sbin/rpki-client/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.35 2023/04/12 03:53:40 job Exp $ */ +/* $OpenBSD: print.c,v 1.36 2023/04/20 15:12:19 job Exp $ */ /* * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> @@ -402,7 +402,7 @@ mft_print(const X509 *x, const struct mft *p) x509_print(x); printf("Authority info access: %s\n", p->aia); printf("Subject info access: %s\n", p->sia); - printf("Manifest Number: %s\n", p->seqnum); + printf("Manifest number: %s\n", p->seqnum); if (p->signtime != 0) printf("Signing time: %s\n", time2str(p->signtime)); |