netfilter: xtables: move extension arguments into compound structure (4/6)
[deliverable/linux.git] / net / bridge / netfilter / ebt_ulog.c
index 25ca6467349e7d29bb2a07067211c967233e5600..bfedf12cbf4180758fb75ae2904c203ce481e3ef 100644 (file)
@@ -247,13 +247,10 @@ static void ebt_log_packet(u_int8_t pf, unsigned int hooknum,
 }
 
 static unsigned int
-ebt_ulog_tg(struct sk_buff *skb, const struct net_device *in,
-           const struct net_device *out, unsigned int hooknr,
-           const struct xt_target *target, const void *data)
+ebt_ulog_tg(struct sk_buff *skb, const struct xt_target_param *par)
 {
-       const struct ebt_ulog_info *uloginfo = data;
-
-       ebt_ulog_packet(hooknr, skb, in, out, uloginfo, NULL);
+       ebt_ulog_packet(par->hooknum, skb, par->in, par->out,
+                       par->targinfo, NULL);
        return EBT_CONTINUE;
 }
 
This page took 0.030269 seconds and 5 git commands to generate.