summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2015-06-13 21:21:01 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2015-06-13 21:21:01 +0200
commitb9536c8216b758802e20e02606ddd20c0bfad9d2 (patch)
tree50d9522d35e3c710d2c3d282474018a16154ce4e
parentd897885aa906b87797401e68d0a072576d37f5c1 (diff)
Fix typo in function name get_phyoutdev_name()
Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
-rw-r--r--kernel/net/netfilter/ipset/ip_set_hash_netiface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/net/netfilter/ipset/ip_set_hash_netiface.c b/kernel/net/netfilter/ipset/ip_set_hash_netiface.c
index 136af7c..43d8c98 100644
--- a/kernel/net/netfilter/ipset/ip_set_hash_netiface.c
+++ b/kernel/net/netfilter/ipset/ip_set_hash_netiface.c
@@ -178,7 +178,7 @@ hash_netiface4_kadt(struct ip_set *set, const struct sk_buff *skb,
if (opt->cmdflags & IPSET_FLAG_PHYSDEV) {
#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
const char *eiface = SRCDIR ? get_physindev_name(skb) :
- get_phyoutdev_name(skb);
+ get_physoutdev_name(skb);
if (!eiface)
return -EINVAL;
@@ -388,7 +388,7 @@ hash_netiface6_kadt(struct ip_set *set, const struct sk_buff *skb,
if (opt->cmdflags & IPSET_FLAG_PHYSDEV) {
#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
const char *eiface = SRCDIR ? get_physindev_name(skb) :
- get_phyoutdev_name(skb);
+ get_physoutdev_name(skb);
if (!eiface)
return -EINVAL;