1
0
Fork 0

audit: WARN if audit_rule_change called illegally

Signed-off-by: Eric Paris <eparis@redhat.com>
wifi-calibration
Eric Paris 2014-10-10 15:05:21 -04:00
parent 3639f17068
commit 739c95038e
1 changed files with 2 additions and 1 deletions

View File

@ -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;