Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/jmorris/selinux-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6:
  SELinux: correct error code in selinux_audit_rule_init
  • Loading branch information
Linus Torvalds committed Aug 18, 2007
2 parents e4f3b1e + 3ad40d6 commit 5056836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security/selinux/ss/services.c
Original file line number Diff line number Diff line change
Expand Up @@ -2127,7 +2127,7 @@ int selinux_audit_rule_init(u32 field, u32 op, char *rulestr,
*rule = NULL;

if (!ss_initialized)
return -ENOTSUPP;
return -EOPNOTSUPP;

switch (field) {
case AUDIT_SUBJ_USER:
Expand Down

0 comments on commit 5056836

Please sign in to comment.