Browse Source

audit: WARN if audit_rule_change called illegally

Signed-off-by: Eric Paris <eparis@redhat.com>
Eric Paris 10 years ago
parent
commit
739c95038e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      kernel/auditfilter.c

+ 2 - 1
kernel/auditfilter.c

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