From f3c52271eed60b004959dae8cbdba45a58692467 Mon Sep 17 00:00:00 2001 From: Boris N Date: Sat, 29 Nov 2025 13:34:37 +0100 Subject: [PATCH] Fixed cfg in original_dst_v6 test (#625) --- tests/socket.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/socket.rs b/tests/socket.rs index d34083cc..133fab27 100644 --- a/tests/socket.rs +++ b/tests/socket.rs @@ -1723,7 +1723,7 @@ fn original_dst_v4() { #[test] #[cfg(all( feature = "all", - any(target_os = "android", target_os = "fuchsia", target_os = "linux") + any(target_os = "android", target_os = "linux", target_os = "windows") ))] fn original_dst_v6() { let socket = Socket::new(Domain::IPV6, Type::STREAM, None).unwrap();