Skip to content

Commit

Permalink
netfilter: Remove the spurious \ in __ip_vs_lblc_init
Browse files Browse the repository at this point in the history
In (464dc80 net: Don't export sysctls to unprivileged users)
I typoed and introduced a spurious backslash.  Delete it.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric W. Biederman authored and David S. Miller committed Nov 19, 2012
1 parent 18af5c1 commit e5ef39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/netfilter/ipvs/ip_vs_lblc.c
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ static int __net_init __ip_vs_lblc_init(struct net *net)
register_net_sysctl(net, "net/ipv4/vs", ipvs->lblc_ctl_table);
if (!ipvs->lblc_ctl_header) {
if (!net_eq(net, &init_net))
kfree(ipvs->lblc_ctl_table);\
kfree(ipvs->lblc_ctl_table);
return -ENOMEM;
}

Expand Down

0 comments on commit e5ef39e

Please sign in to comment.