From aee6084b19655f4100937ed2d168abc1b7db88dd Mon Sep 17 00:00:00 2001 From: Davide Beatrici Date: Fri, 28 Sep 2018 20:56:10 +0200 Subject: [PATCH] BridgeUnix.c: enable local bridge function on all BSD systems --- src/Cedar/BridgeUnix.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Cedar/BridgeUnix.c b/src/Cedar/BridgeUnix.c index 7e4fbc29..f34e9434 100644 --- a/src/Cedar/BridgeUnix.c +++ b/src/Cedar/BridgeUnix.c @@ -270,12 +270,10 @@ bool IsEthSupported() #if defined(UNIX_LINUX) return IsEthSupportedLinux(); +#elif defined(UNIX_BSD) + return true; #elif defined(UNIX_SOLARIS) return IsEthSupportedSolaris(); -#elif defined(BRIDGE_PCAP) - return true; -#elif defined(BRIDGE_BPF) - return true; #else return false; #endif