Skip to content

Commit

Permalink
Remove stray println
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Oct 26, 2020
1 parent 57f748c commit 0e7ccc1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion openssl/src/x509/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,6 @@ impl X509 {
ffi::PEM_read_bio_X509(bio.as_ptr(), ptr::null_mut(), None, ptr::null_mut());
if r.is_null() {
let err = ffi::ERR_peek_last_error();
println!("{}", ffi::ERR_GET_LIB(err));
if ffi::ERR_GET_LIB(err) == ffi::ERR_LIB_PEM
&& ffi::ERR_GET_REASON(err) == ffi::PEM_R_NO_START_LINE
{
Expand Down

0 comments on commit 0e7ccc1

Please sign in to comment.