diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-09 18:53:25 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-09 18:53:25 +0000 |
commit | ba957717c95539a17f79006fb20d5b0be319de29 (patch) | |
tree | 0ce3f1af4b7743355842c4abc807d9409afce51d /usr.sbin/rpki-client/mft.c | |
parent | f6c701816da6a1b79ccb488558e083381b910d05 (diff) |
Unwrap a few lines and zap a tab
Diffstat (limited to 'usr.sbin/rpki-client/mft.c')
-rw-r--r-- | usr.sbin/rpki-client/mft.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/mft.c b/usr.sbin/rpki-client/mft.c index 1238e0b6a9c..0e2b207bf34 100644 --- a/usr.sbin/rpki-client/mft.c +++ b/usr.sbin/rpki-client/mft.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mft.c,v 1.83 2023/03/09 09:46:21 job Exp $ */ +/* $OpenBSD: mft.c,v 1.84 2023/03/09 18:53:24 tb Exp $ */ /* * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> @@ -358,8 +358,7 @@ mft_parse(X509 **x509, const char *fn, const unsigned char *der, size_t len) memset(&p, 0, sizeof(struct parse)); p.fn = fn; - cms = cms_parse_validate(x509, fn, der, len, mft_oid, &cmsz, - &signtime); + cms = cms_parse_validate(x509, fn, der, len, mft_oid, &cmsz, &signtime); if (cms == NULL) return NULL; assert(*x509 != NULL); |