On Sat, 28 Jul 2007 00:55:18 +0200 Peter Zijlstra <[EMAIL PROTECTED]> wrote:
> - if (!ret) {
> + if (ret) {
> WARN_ON(1);
> send_sig(SIGKILL, current, 0);
> }
fwiw, that could now become
if (WARN_ON(ret))
send_sig(SIGKILL, current, 0);
--
Linux-audit mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/linux-audit
