dect
/
linux-2.6
Archived
13
0
Fork 0

netfilter: Remove the spurious \ in __ip_vs_lblc_init

In (464dc801c7 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>
This commit is contained in:
Eric W. Biederman 2012-11-19 05:26:30 +00:00 committed by David S. Miller
parent 18af5c1797
commit e5ef39eda6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}