Skip to content

Commit

Permalink
Fix salt path
Browse files Browse the repository at this point in the history
  • Loading branch information
sosthene-nitrokey committed Apr 5, 2023
1 parent 1653e51 commit 3e79259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl AuthBackend {
global_fs: &mut impl Filestore,
rng: &mut R,
) -> Result<Salt, Error> {
let path = PathBuf::from(BACKEND_DIR).join(&PathBuf::from("salt"));
let path = PathBuf::from("salt");
global_fs
.read(&path, self.location)
.or_else(|_| {
Expand Down

0 comments on commit 3e79259

Please sign in to comment.