aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorSerge Hallyn <serue@us.ibm.com>2005-09-16 22:27:57 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-17 14:50:01 -0400
commit9afa57b04ca08ff061e54787e3becf5c40283149 (patch)
tree0289bc53611919aaf87c455633fe0b3a9eff2c87 /security
parentd15c5749eb81dee94d40fe12584ca8461858b4cb (diff)
[PATCH] seclvl: use securityfs (fix)
That should be -EINVAL for both. Signed-off-by: Serge Hallyn <serue@us.ibm.com> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'security')
-rw-r--r--security/seclvl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/seclvl.c b/security/seclvl.c
index 241093d6f0b8..1caac0164643 100644
--- a/security/seclvl.c
+++ b/security/seclvl.c
@@ -252,7 +252,7 @@ passwd_write_file(struct file * file, const char __user * buf,
252 } 252 }
253 253
254 if (count < 0 || count >= PAGE_SIZE) 254 if (count < 0 || count >= PAGE_SIZE)
255 return -ENOMEM; 255 return -EINVAL;
256 if (*ppos != 0) 256 if (*ppos != 0)
257 return -EINVAL; 257 return -EINVAL;
258 page = (char *)get_zeroed_page(GFP_KERNEL); 258 page = (char *)get_zeroed_page(GFP_KERNEL);