Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stratis-storage/stratisd
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9ff557773566bea03be58dc1a0a4929ade34b688
Choose a base ref
..
head repository: stratis-storage/stratisd
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fb892f72426035c95b9bbd197cb1f43df5a84de2
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/engine/strat_engine/cmd.rs
2 changes: 1 addition & 1 deletion src/engine/strat_engine/cmd.rs
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@ fn get_executable(name: &str) -> StratisResult<PathBuf> {
if !executable.exists() {
return Err(StratisError::Error(format!(
"Executable previously located at \"{}\" seems to have been removed since stratisd was started",
executable.to_str().expect("All parts of path are constructed from stricly ASCII components")
executable.to_str().expect("All parts of path are constructed from strictly ASCII components")
)));
}
Ok(executable.to_path_buf())