1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

x.openssl: remove printlns (#6205)

This commit is contained in:
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

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
}
}