Skip to content

Commit

Permalink
style: apply cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kikuomax committed Nov 19, 2023
1 parent f9049b3 commit 272ae25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/verify_cert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ pub(crate) struct ChainOptions<'a> {
pub(crate) crls: &'a [&'a dyn CertRevocationList],
}

pub(crate) fn build_chain(opts: &ChainOptions, cert: &Cert, time: Option<time::Time>) -> Result<(), Error> {
pub(crate) fn build_chain(
opts: &ChainOptions,
cert: &Cert,
time: Option<time::Time>,
) -> Result<(), Error> {
build_chain_inner(opts, cert, time, 0, &mut Budget::default()).map_err(|e| match e {
ControlFlow::Break(err) => err,
ControlFlow::Continue(err) => err,
Expand Down

0 comments on commit 272ae25

Please sign in to comment.