]> granicus.if.org Git - ipset/commitdiff
Fix typo in function name get_phyoutdev_name()
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Sat, 13 Jun 2015 19:21:01 +0000 (21:21 +0200)
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Sat, 13 Jun 2015 19:21:01 +0000 (21:21 +0200)
Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
kernel/net/netfilter/ipset/ip_set_hash_netiface.c

index 136af7cd746a1c1d5595b19fc2e6925391382733..43d8c9896fa3e66ea7f76ee1b7934c3129a46fd3 100644 (file)
@@ -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;