Skip to content

Commit

Permalink
Fix missing .trim() when verifying FIPS module name
Browse files Browse the repository at this point in the history
  • Loading branch information
molguin92 authored and inikulin committed Aug 5, 2023
1 parent bb063aa commit 57e54be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boring-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ fn link_in_precompiled_bcm_o(bssl_dir: &str) {
let out = run_command(Command::new("ar").args(["t", &libcrypto_path, "bcm.o"])).unwrap();

assert_eq!(
String::from_utf8(out.stdout).unwrap(),
String::from_utf8(out.stdout).unwrap().trim(),
"bcm.o",
"failed to verify FIPS module name"
);
Expand Down

0 comments on commit 57e54be

Please sign in to comment.