aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/arptables/arptables-0.0.3-4/arptables-arpt-get-target-fix.patch
blob: 0875344feb3fe022499f1e963007d49e802b0bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
arptables: fix the redefinition of 'arpt_get_target'

Upstream-Status: Pending

This function is already defined as a static inline function in
include/linux/netfilter_arp/arp_tables.h, once GCC uses -O0, the
inline will not work, and the redefinition error will happen

Signed-off-by: Aws Ismail <aws.ismail@windriver.com>
Signed-off-by: Roy.Li <rongqing.li@windriver.com>

diff --git a/libarptc/libarptc_incl.c b/libarptc/libarptc_incl.c
index 35736db..addd3f9 100644
--- a/libarptc/libarptc_incl.c
+++ b/libarptc/libarptc_incl.c
@@ -11,14 +11,6 @@
 /* (C)1999 Paul ``Rusty'' Russell - Placed under the GNU GPL (See
    COPYING for details). */
 
-#ifndef __OPTIMIZE__
-STRUCT_ENTRY_TARGET *
-GET_TARGET(STRUCT_ENTRY *e)
-{
-	return (void *)e + e->target_offset;
-}
-#endif
-
 static int sockfd = -1;
 static void *arptc_fn = NULL;