Commit 739c9503 authored by Eric Paris's avatar Eric Paris

audit: WARN if audit_rule_change called illegally

Signed-off-by: default avatarEric Paris <eparis@redhat.com>
parent 3639f170
......@@ -1085,7 +1085,8 @@ int audit_rule_change(int type, __u32 portid, int seq, void *data,
audit_free_rule(entry);
break;
default:
return -EINVAL;
err = -EINVAL;
WARN_ON(1);
}
return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment