[chore]: Bump golang.org/x/crypto from 0.12.0 to 0.13.0 (#2190)

This commit is contained in:
dependabot[bot]
2023-09-11 09:50:37 +00:00
committed by GitHub
parent 79906f969d
commit f0a3fcae85
13 changed files with 130 additions and 18 deletions

View File

@ -549,6 +549,9 @@ func SetNonblock(fd int, nonblocking bool) (err error) {
if err != nil {
return err
}
if (flag&O_NONBLOCK != 0) == nonblocking {
return nil
}
if nonblocking {
flag |= O_NONBLOCK
} else {