File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
49
49
(#[ 1395] ( https://github.com/nix-rust/nix/pull/1395 ) )
50
50
- Fix spurious errors using ` sendmmsg ` with multiple cmsgs
51
51
(#[ 1414] ( https://github.com/nix-rust/nix/pull/1414 ) )
52
+ - Added ` Errno::EOPNOTSUPP ` to FreeBSD, where it was missing.
53
+ (#[ 1452] ( https://github.com/nix-rust/nix/pull/1452 ) )
52
54
53
55
### Removed
54
56
Original file line number Diff line number Diff line change @@ -1334,6 +1334,7 @@ mod consts {
1334
1334
pub const ELAST : Errno = Errno :: EOWNERDEAD ;
1335
1335
pub const EWOULDBLOCK : Errno = Errno :: EAGAIN ;
1336
1336
pub const EDEADLOCK : Errno = Errno :: EDEADLK ;
1337
+ pub const EOPNOTSUPP : Errno = Errno :: ENOTSUP ;
1337
1338
}
1338
1339
1339
1340
pub fn from_i32 ( e : i32 ) -> Errno {
You can’t perform that action at this time.
0 commit comments