Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e011ff48abc1b0ee97cde26b7700d2cca689e7c3
Commit:     e011ff48abc1b0ee97cde26b7700d2cca689e7c3
Parent:     55d84acd366f08e11ff00139f32fe4394fb0016a
Author:     Bart De Schuymer <[EMAIL PROTECTED]>
AuthorDate: Mon Nov 5 20:59:47 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Nov 7 04:08:25 2007 -0800

    [NETFILTER]: ebt_arp: fix --arp-gratuitous matching dependence on 
--arp-ip-{src,dst}
    
    Fix --arp-gratuitous matching dependence on --arp-ip-{src,dst}
    
    Signed-off-by: Bart De Schuymer <[EMAIL PROTECTED]>
    Signed-off-by: Lutz Pre�ler <[EMAIL PROTECTED]>
    Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/bridge/netfilter/ebt_arp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/bridge/netfilter/ebt_arp.c b/net/bridge/netfilter/ebt_arp.c
index 1a46952..1814139 100644
--- a/net/bridge/netfilter/ebt_arp.c
+++ b/net/bridge/netfilter/ebt_arp.c
@@ -34,7 +34,7 @@ static int ebt_filter_arp(const struct sk_buff *skb, const 
struct net_device *in
           ah->ar_pro, EBT_ARP_PTYPE))
                return EBT_NOMATCH;
 
-       if (info->bitmask & (EBT_ARP_SRC_IP | EBT_ARP_DST_IP)) {
+       if (info->bitmask & (EBT_ARP_SRC_IP | EBT_ARP_DST_IP | EBT_ARP_GRAT)) {
                __be32 saddr, daddr, *sap, *dap;
 
                if (ah->ar_pln != sizeof(__be32) || ah->ar_pro != 
htons(ETH_P_IP))
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to