From d1d8408c9a7c7b5ffa30371f246cc18085e11313 Mon Sep 17 00:00:00 2001 From: Doan Tran Cong Danh Date: Thu, 3 Oct 2019 13:00:27 +0700 Subject: [PATCH 6/9] musl fix Including causes the inclusion of , which defines 'struct in6_addr', already defined in . Remove to fix musl build. --- tools/bneptest.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/bneptest.c b/tools/bneptest.c index 8bc7596b6..6b3956cfa 100644 --- a/tools/bneptest.c +++ b/tools/bneptest.c @@ -37,7 +37,6 @@ #include #include #include -#include #include @@ -51,6 +50,9 @@ #include "lib/bnep.h" #include "profiles/network/bnep.h" +/* From */ +#define BRCTL_SET_BRIDGE_FORWARD_DELAY 8 + enum { MODE_LISTEN, MODE_CONNECT, -- 2.23.0