Skip to content

Commit 5c7b03f

Browse files
CTCm3Thomasdezeeuw
authored andcommitted
formatting
1 parent 4cfa6de commit 5c7b03f

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

src/sys/unix.rs

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1351,17 +1351,8 @@ impl crate::Socket {
13511351
/// Sets the value for the `SO_SETFIB` option on this socket.
13521352
///
13531353
/// Bind socket to the specified forwarding table (VRF) on a FreeBSD.
1354-
#[cfg(all(
1355-
feature = "all",
1356-
any(target_os = "freebsd")
1357-
))]
1358-
#[cfg_attr(
1359-
docsrs,
1360-
doc(cfg(all(
1361-
feature = "all",
1362-
any(target_os = "freebsd")
1363-
)))
1364-
)]
1354+
#[cfg(all(feature = "all", any(target_os = "freebsd")))]
1355+
#[cfg_attr(docsrs, doc(cfg(all(feature = "all", any(target_os = "freebsd")))))]
13651356
pub fn set_fib(&self, fib: u32) -> io::Result<()> {
13661357
syscall!(setsockopt(
13671358
self.as_raw(),

0 commit comments

Comments
 (0)