aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorAlexander Stohr <alexander.stohr@gmx.de>2004-03-30 16:48:12 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-03-30 16:48:12 -0800
commit96531b3706a5d1e84f138ce45afb3d003f6adade (patch)
treebba8650dc2028831035e3c2e75a47ee288bdd02c /security
parentfe6a9c2179b19c03fbaba00df4e441a07197d3c2 (diff)
downloadhistory-96531b3706a5d1e84f138ce45afb3d003f6adade.tar.gz
[PATCH] double semicolon cleanup
This cleans up a larger amount of superfluos ";;" statements in current Linux kernel sources by converting them to the regular single ";" statments. It seems to be a common problem that at the end of a line the semicolon key is producing an echo.
Diffstat (limited to 'security')
-rw-r--r--security/selinux/hooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index b42eaa71fcc6c1..0c72dd49215f1c 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -1453,7 +1453,7 @@ static int selinux_quotactl(int cmds, int type, int id, struct super_block *sb)
static int selinux_quota_on(struct file *f)
{
- return file_has_perm(current, f, FILE__QUOTAON);;
+ return file_has_perm(current, f, FILE__QUOTAON);
}
static int selinux_syslog(int type)