summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2015-03-23 18:01:35 -0700
committerJiri Slaby <jslaby@suse.cz>2015-04-22 08:58:31 +0200
commit9647fcfbcad58f58edfa9f94aa691106ec29ff9a (patch)
tree1d179e85c8809e49006184803f6170fbfb3d9c5c /security
parent29b7448e685aa06dbe689855a943a8487c042350 (diff)
selinux: fix sel_write_enforce broken return value
commit 6436a123a147db51a0b06024a8350f4c230e73ff upstream. Return a negative error value like the rest of the entries in this function. Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Stephen Smalley <sds@tycho.nsa.gov> [PM: tweaked subject line] Signed-off-by: Paul Moore <pmoore@redhat.com> Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/selinuxfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c
index 86f969437f5d..a96bed4db3e8 100644
--- a/security/selinux/selinuxfs.c
+++ b/security/selinux/selinuxfs.c
@@ -150,7 +150,7 @@ static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
goto out;
/* No partial writes. */
- length = EINVAL;
+ length = -EINVAL;
if (*ppos != 0)
goto out;