From 635f4c3dc40e50667be3f095739e2d1286f6db48 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sun, 29 Mar 2026 15:45:02 +0200 Subject: [PATCH] daemon/libnetwork/ns: remove windows stub This reverts commit 40b6ebfe754d6efe839f89ecfd4727ccdbbea359 ([libnetwork@d82ceca]), which added it to make compile work on Windows, but this package contains no Windows code, so shouldn't be imported in any file compiled on Windows. [libnetwork@d82ceca]: https://github.com/moby/libnetwork/commit/d82ceca3f6ba685e0e709e9f15800353ecad03a4 Signed-off-by: Sebastiaan van Stijn --- daemon/libnetwork/ns/init_windows.go | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 daemon/libnetwork/ns/init_windows.go diff --git a/daemon/libnetwork/ns/init_windows.go b/daemon/libnetwork/ns/init_windows.go deleted file mode 100644 index f5838f81dd..0000000000 --- a/daemon/libnetwork/ns/init_windows.go +++ /dev/null @@ -1,3 +0,0 @@ -package ns - -// File is present so that go build ./... is closer to working on Windows from repo root.