diff options
author | Luca Casonato <hello@lcas.dev> | 2024-01-24 22:59:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 21:59:18 +0000 |
commit | 316093fec41163be3d0e31e6d61b5bc0b1341b27 (patch) | |
tree | 8a47a85b0271fc7580508f47e4ed1fb73504d4f7 /ext/node/ops/crypto/x509.rs | |
parent | 52ad1ef154d352529c4ad4857ab82d8478aeb105 (diff) |
feat(publish): error on invalid external imports (#22088)
Diffstat (limited to 'ext/node/ops/crypto/x509.rs')
-rw-r--r-- | ext/node/ops/crypto/x509.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/node/ops/crypto/x509.rs b/ext/node/ops/crypto/x509.rs index 440e7c291..2e0aec011 100644 --- a/ext/node/ops/crypto/x509.rs +++ b/ext/node/ops/crypto/x509.rs @@ -106,7 +106,6 @@ pub fn op_node_x509_check_email( if let Some(subject_alt) = subject_alt { for name in &subject_alt.general_names { - dbg!(name); if let extensions::GeneralName::RFC822Name(n) = name { if *n == email { return Ok(true); |