Skip to content

Commit eec0c14

Browse files
committed
blorp
1 parent 03650dd commit eec0c14

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1559,19 +1559,19 @@ impl Ssl {
15591559
);
15601560

15611561
if let Some(default_cert_file) = &ctx.default_cert_file {
1562-
verify_roots.add_from_files([default_cert_file.to_path_buf()])?;
1562+
dbg!(verify_roots.add_from_files([default_cert_file.to_path_buf()]))?;
15631563
}
15641564

15651565
for cert_dir in &ctx.default_cert_dir {
15661566
let entries = match fs::read_dir(cert_dir) {
15671567
Ok(iter) => iter,
1568-
Err(err) => return Err(error::Error::from_io(err).raise()),
1568+
Err(err) => return Err(error::Error::from_io(dbg!(err)).raise()),
15691569
}
15701570
.filter_map(|entry| entry.ok())
15711571
.map(|dir_entry| dir_entry.path())
15721572
.filter(|path| path.exists());
15731573

1574-
verify_roots.add_from_files(entries)?;
1574+
dbg!(verify_roots.add_from_files(entries))?;
15751575
}
15761576

15771577
Ok(verify_roots)

0 commit comments

Comments
 (0)