Skip to content

Commit

Permalink
Fix compilation of read_dir_first call
Browse files Browse the repository at this point in the history
  • Loading branch information
sosthene-nitrokey committed Apr 3, 2024
1 parent 2c06c5b commit cd42bd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ p256-cortex-m4 = { version = "0.1.0-alpha.6", features = ["prehash", "sec1-signa
admin-app = "0.1.0"

[patch.crates-io]
littlefs2 = { git = "https://github.com/trussed-dev/littlefs2.git", rev = "ebd27e49ca321089d01d8c9b169c4aeb58ceeeca" }
littlefs2 = { git = "https://github.com/trussed-dev/littlefs2.git", rev = "960e57d9fc0d209308c8e15dc26252bbe1ff6ba8" }
apdu-dispatch = { git = "https://github.com/trussed-dev/apdu-dispatch.git", rev = "915fc237103fcecc29d0f0b73391f19abf6576de" }
ctaphid-dispatch = { git = "https://github.com/trussed-dev/ctaphid-dispatch.git", rev = "57cb3317878a8593847595319aa03ef17c29ec5b" }
trussed = { git = "https://github.com/Nitrokey/trussed.git", rev = "dd7836a155c78e93a2087611666e60308ed8ff1d" }
trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "667d60c019d485524a276f2a4dd07aaa66e71021" }
trussed-auth = { git = "https://github.com/trussed-dev/trussed-auth.git", tag = "v0.3.0"}
trussed-manage = { git = "https://github.com/trussed-dev/trussed-staging.git", tag = "manage-v0.1.0" }
trussed-rsa-alloc = { git = "https://github.com/Nitrokey/trussed-rsa-backend.git", rev = "2088e2f8a8d706276c1559717b4c6b6d4f270253" }
Expand Down
3 changes: 2 additions & 1 deletion src/trussed_auth_impl/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ use serde::{Deserialize, Serialize};
use serde_byte_array::ByteArray;
use sha2::Sha256;
use trussed::{
api::NotBefore,
platform::CryptoRng,
service::{Filestore, RngCore},
types::{Bytes, Location, Path, PathBuf},
Expand Down Expand Up @@ -611,7 +612,7 @@ pub(crate) fn delete_all_pins<Twi: I2CForT1, D: DelayUs<u32>>(
) -> Result<(), Error> {
debug!("Deleting all pins");
while let Some((entry, _)) = fs
.read_dir_first(path!(""), location, None)
.read_dir_first(path!(""), location, &NotBefore::None)
.map_err(|_| Error::ReadFailed)?
{
debug!("Deleting {}", entry.path());
Expand Down

0 comments on commit cd42bd5

Please sign in to comment.