[NETFILTER]: nfnetlink_log: remove fallback to group 0
authorPatrick McHardy <[email protected]>
Fri, 13 Apr 2007 05:16:38 +0000 (22:16 -0700)
committerDavid S. Miller <[email protected]>
Thu, 26 Apr 2007 05:29:01 +0000 (22:29 -0700)
Don't fallback to group 0 if no instance can be found for the given group.
This potentially confuses the listener and is not what the user configured.
Also remove the ring buffer spamming that happens when rules are set up
before the logging daemon is started.

Signed-off-by: Patrick McHardy <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/netfilter/nfnetlink_log.c

index d2c6aab6bb7ac1241ef7c58f7caabab895968271..e32e30e7a17caeec6d1a21841045ab5ff92b6586 100644 (file)
@@ -584,12 +584,7 @@ nfulnl_log_packet(unsigned int pf,
 
        inst = instance_lookup_get(li->u.ulog.group);
        if (!inst)
-               inst = instance_lookup_get(0);
-       if (!inst) {
-               PRINTR("nfnetlink_log: trying to log packet, "
-                       "but no instance for group %u\n", li->u.ulog.group);
                return;
-       }
 
        plen = 0;
        if (prefix)