Rollup merge of #85738 - 370417:opensbd, r=m-ou-se

Rename opensbd to openbsd

OpenBsd was sometimes spelled "opensbd" in the standard library.
This commit is contained in:
Guillaume Gomez 2021-05-27 20:08:24 +02:00 committed by GitHub
commit 48706edc56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ impl Socket {
target_os = "illumos",
target_os = "linux",
target_os = "netbsd",
target_os = "opensbd",
target_os = "openbsd",
))] {
// On platforms that support it we pass the SOCK_CLOEXEC
// flag to atomically create the socket and set it as
@ -99,7 +99,7 @@ impl Socket {
target_os = "illumos",
target_os = "linux",
target_os = "netbsd",
target_os = "opensbd",
target_os = "openbsd",
))] {
// Like above, set cloexec atomically
cvt(libc::socketpair(fam, ty | libc::SOCK_CLOEXEC, 0, fds.as_mut_ptr()))?;
@ -204,7 +204,7 @@ impl Socket {
target_os = "illumos",
target_os = "linux",
target_os = "netbsd",
target_os = "opensbd",
target_os = "openbsd",
))] {
let fd = cvt_r(|| unsafe {
libc::accept4(self.0.raw(), storage, len, libc::SOCK_CLOEXEC)