diff --git a/src/libdoh/src/lib.rs b/src/libdoh/src/lib.rs index 3022a7b..06ee661 100644 --- a/src/libdoh/src/lib.rs +++ b/src/libdoh/src/lib.rs @@ -433,7 +433,8 @@ impl DoH { .header( hyper::header::CACHE_CONTROL, format!( - "max-age={ttl}, stale-if-error={STALE_IF_ERROR_SECS}, stale-while-revalidate={STALE_WHILE_REVALIDATE_SECS}" + "max-age={ttl}, stale-if-error={STALE_IF_ERROR_SECS}, \ + stale-while-revalidate={STALE_WHILE_REVALIDATE_SECS}" ) .as_str(), ); diff --git a/src/libdoh/src/tls.rs b/src/libdoh/src/tls.rs index ccc4585..7047f99 100644 --- a/src/libdoh/src/tls.rs +++ b/src/libdoh/src/tls.rs @@ -29,9 +29,7 @@ where let mut reader = BufReader::new(File::open(certs_path).map_err(|e| { io::Error::new( e.kind(), - format!( - "Unable to load the certificates [{certs_path_str}]: {e}" - ), + format!("Unable to load the certificates [{certs_path_str}]: {e}"), ) })?); rustls_pemfile::certs(&mut reader).map_err(|_| { @@ -52,9 +50,7 @@ where .map_err(|e| { io::Error::new( e.kind(), - format!( - "Unable to load the certificate keys [{certs_keys_path_str}]: {e}" - ), + format!("Unable to load the certificate keys [{certs_keys_path_str}]: {e}"), ) })? .read_to_end(&mut encoded_keys)?;