summaryrefslogtreecommitdiff
path: root/tools/iptables-test.c
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2010-11-16 15:08:09 +0100
committerSamuel Ortiz <sameo@linux.intel.com>2010-11-16 15:08:09 +0100
commit9846439ee16439330a27e4ef1d87d9038d67fd23 (patch)
treefce72c9fe5f90cb5d399c1f951cdadbeeb483511 /tools/iptables-test.c
parenta82c852984fdbdd055b2bd108fc117774ae9d322 (diff)
downloadconnman-9846439ee16439330a27e4ef1d87d9038d67fd23.tar.gz
connman-9846439ee16439330a27e4ef1d87d9038d67fd23.tar.bz2
connman-9846439ee16439330a27e4ef1d87d9038d67fd23.zip
iptables-test: Fix build failure against 2.6.37-rc1 headers
Diffstat (limited to 'tools/iptables-test.c')
-rw-r--r--tools/iptables-test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/iptables-test.c b/tools/iptables-test.c
index ff9f5c79..e316cc93 100644
--- a/tools/iptables-test.c
+++ b/tools/iptables-test.c
@@ -76,7 +76,7 @@ static const char *hooknames[] = {
#define ALIGN(s) (((s) + ((MIN_ALIGN)-1)) & ~((MIN_ALIGN)-1))
-struct ipt_error_target {
+struct error_target {
struct xt_entry_target t;
char error[IPT_TABLE_MAXNAMELEN];
};
@@ -453,7 +453,7 @@ static int connman_iptables_add_chain(struct connman_iptables *table,
GList *last;
struct ipt_entry *entry_head;
struct ipt_entry *entry_return;
- struct ipt_error_target *error;
+ struct error_target *error;
struct ipt_standard_target *standard;
u_int16_t entry_head_size, entry_return_size;
@@ -470,7 +470,7 @@ static int connman_iptables_add_chain(struct connman_iptables *table,
/* head entry */
entry_head_size = sizeof(struct ipt_entry) +
- sizeof(struct ipt_error_target);
+ sizeof(struct error_target);
entry_head = g_try_malloc0(entry_head_size);
if (entry_head == NULL)
goto err;
@@ -480,9 +480,9 @@ static int connman_iptables_add_chain(struct connman_iptables *table,
entry_head->target_offset = sizeof(struct ipt_entry);
entry_head->next_offset = entry_head_size;
- error = (struct ipt_error_target *) entry_head->elems;
+ error = (struct error_target *) entry_head->elems;
strcpy(error->t.u.user.name, IPT_ERROR_TARGET);
- error->t.u.user.target_size = ALIGN(sizeof(struct ipt_error_target));
+ error->t.u.user.target_size = ALIGN(sizeof(struct error_target));
strcpy(error->error, name);
if (connman_add_entry(table, entry_head, last, -1) < 0)