Skip to content

Commit

Permalink
netfilter: ipv4: code indentation
Browse files Browse the repository at this point in the history
Use tabs instead of spaces to indent code.

No changes detected by objdiff.

Signed-off-by: Ian Morris <ipm@chirality.org.uk>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
  • Loading branch information
Ian Morris authored and Pablo Neira Ayuso committed Oct 16, 2015
1 parent 6c28255 commit 24cebe3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions net/ipv4/netfilter/ip_tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ ipt_do_table(struct sk_buff *skb,
} while (!acpar.hotdrop);
pr_debug("Exiting %s; sp at %u\n", __func__, stackidx);

xt_write_recseq_end(addend);
local_bh_enable();
xt_write_recseq_end(addend);
local_bh_enable();

#ifdef DEBUG_ALLOW_ALL
return NF_ACCEPT;
Expand Down Expand Up @@ -484,7 +484,7 @@ mark_source_chains(const struct xt_table_info *newinfo,
unsigned int oldpos, size;

if ((strcmp(t->target.u.user.name,
XT_STANDARD_TARGET) == 0) &&
XT_STANDARD_TARGET) == 0) &&
t->verdict < -NF_MAX_VERDICT - 1) {
duprintf("mark_source_chains: bad "
"negative verdict (%i)\n",
Expand Down
2 changes: 1 addition & 1 deletion net/ipv4/netfilter/ipt_SYNPROXY.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ synproxy_send_client_ack(const struct synproxy_net *snet,
synproxy_build_options(nth, opts);

synproxy_send_tcp(snet, skb, nskb, skb->nfct, IP_CT_ESTABLISHED_REPLY,
niph, nth, tcp_hdr_size);
niph, nth, tcp_hdr_size);
}

static bool
Expand Down
2 changes: 1 addition & 1 deletion net/ipv4/netfilter/iptable_security.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static int __init iptable_security_init(void)
int ret;

ret = register_pernet_subsys(&iptable_security_net_ops);
if (ret < 0)
if (ret < 0)
return ret;

sectbl_ops = xt_hook_link(&security_table, iptable_security_hook);
Expand Down

0 comments on commit 24cebe3

Please sign in to comment.