Skip to content

Commit

Permalink
refector(misc): remove useless debug info; rename directory name to k…
Browse files Browse the repository at this point in the history
…eep consistency
  • Loading branch information
csyJoy committed Sep 3, 2024
1 parent c3ed659 commit 41ecd6d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "openssl_hook"
name = "openssl-hook"
edition.workspace = true
version.workspace = true
readme.workspace = true
Expand All @@ -15,4 +15,4 @@ env_logger = {workspace = true}
libc = "0.2"
anyhow = {workspace = true}
lazy_static = "1.5"
rats-rs = {path = "../../rats-rs", features = ["is-sync"]}
rats-rs = {path = "../../rats-rs", features = ["is-sync"]}
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion rats-rs/src/transport/tls/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ pub extern "C" fn verify_certificate_default(
debug!("preverify_ok is 0");
let err = unsafe { X509_STORE_CTX_get_error(ctx) };
if err == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT {
debug!("enter here!");
return 1;
}
error!("Failed on pre-verification due to {}\n", err);
Expand Down

0 comments on commit 41ecd6d

Please sign in to comment.