mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix net.openssl, ensure that it is at least compiled, to avoid future regressions on sweeping vlib changes
This commit is contained in:
@ -58,7 +58,7 @@ pub fn (mut s SSLConn) shutdown() ! {
|
||||
}
|
||||
if err_res == .ssl_error_want_read {
|
||||
for {
|
||||
ready := @select(s.handle, .read, s.duration)?
|
||||
ready := @select(s.handle, .read, s.duration)!
|
||||
if ready {
|
||||
break
|
||||
}
|
||||
@ -66,7 +66,7 @@ pub fn (mut s SSLConn) shutdown() ! {
|
||||
continue
|
||||
} else if err_res == .ssl_error_want_write {
|
||||
for {
|
||||
ready := @select(s.handle, .write, s.duration)?
|
||||
ready := @select(s.handle, .write, s.duration)!
|
||||
if ready {
|
||||
break
|
||||
}
|
||||
|
Reference in New Issue
Block a user