From 7b2ae7aa2f52fbac65874a641cbfbb0182d0ba46 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Fri, 28 Oct 2022 20:45:05 -0500 Subject: [PATCH] ipc: freebsd: move if_wg path to reflect new in-tree location When we re-added if_wg to the tree, we changed directories in dev to strip the if_ (we don't use this prefix for other interfaces' directories). Adjust it here as a convenience, so that when we import wireguard-tools to FreeBSD the path will just work as-is with our usual build. Signed-off-by: Kyle Evans Signed-off-by: Jason A. Donenfeld --- src/ipc-freebsd.h | 2 +- src/uapi/freebsd/dev/{if_wg => wg}/if_wg.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/uapi/freebsd/dev/{if_wg => wg}/if_wg.h (100%) diff --git a/src/ipc-freebsd.h b/src/ipc-freebsd.h index 2c10c10..b5be15b 100644 --- a/src/ipc-freebsd.h +++ b/src/ipc-freebsd.h @@ -6,7 +6,7 @@ #include #include -#include +#include #define IPC_SUPPORTS_KERNEL_INTERFACE diff --git a/src/uapi/freebsd/dev/if_wg/if_wg.h b/src/uapi/freebsd/dev/wg/if_wg.h similarity index 100% rename from src/uapi/freebsd/dev/if_wg/if_wg.h rename to src/uapi/freebsd/dev/wg/if_wg.h