diff options
author | John Johansen <john.johansen@canonical.com> | 2013-02-18 16:08:34 -0800 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2013-04-28 00:36:55 -0700 |
commit | 8e4ff109d0d2194d98e9e16325bb4102f6463b43 (patch) | |
tree | 6014b4e4356a977dbba01851d981aa677ab040dd /security/apparmor/match.c | |
parent | cf47aede3b9e197d3b4a028e2157bf7736665ac4 (diff) | |
download | linux-8e4ff109d0d2194d98e9e16325bb4102f6463b43.tar.gz linux-8e4ff109d0d2194d98e9e16325bb4102f6463b43.tar.bz2 linux-8e4ff109d0d2194d98e9e16325bb4102f6463b43.zip |
apparmor: misc cleanup of match
tidying up comments, includes and defines
Signed-off-by: John Johansen <john.johansen@canonical.com>
Acked-by: Kees Cook <kees@ubuntu.com>
Diffstat (limited to 'security/apparmor/match.c')
-rw-r--r-- | security/apparmor/match.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/security/apparmor/match.c b/security/apparmor/match.c index dfd25a9c9a69..1ff823031c73 100644 --- a/security/apparmor/match.c +++ b/security/apparmor/match.c @@ -4,7 +4,7 @@ * This file contains AppArmor dfa based regular expression matching engine * * Copyright (C) 1998-2008 Novell/SUSE - * Copyright 2009-2010 Canonical Ltd. + * Copyright 2009-2012 Canonical Ltd. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -137,7 +137,6 @@ static int verify_dfa(struct aa_dfa *dfa, int flags) for (i = 0; i < state_count; i++) { if (DEFAULT_TABLE(dfa)[i] >= state_count) goto out; - /* TODO: do check that DEF state recursion terminates */ if (BASE_TABLE(dfa)[i] + 255 >= trans_count) { printk(KERN_ERR "AppArmor DFA next/check upper " "bounds error\n"); |