x.openssl: remove printlns (#6205)

pull/6219/head
Xavier B 2020-08-24 11:20:03 -04:00 committed by GitHub
parent acc5c95f0d
commit 32a894719e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -56,7 +56,6 @@ pub fn (mut s SSLConn) shutdown() ? {
}
continue
} else {
println('error: $err_res')
return error('unexepedted ssl error $err_res')
}
C.SSL_free(s.ssl)
@ -116,7 +115,6 @@ pub fn (mut s SSLConn) connect(mut tcp_conn net.TcpConn) ? {
}
return error('Could not connect using SSL. ($err_res),err')
}
println('CONNECT OK')
break
}
}