]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
SELinux: delete debugging printks from filename_trans rule processing
authorEric Paris <eparis@redhat.com>
Thu, 7 Apr 2011 18:46:59 +0000 (14:46 -0400)
committerEric Paris <eparis@redhat.com>
Thu, 12 May 2011 20:02:42 +0000 (16:02 -0400)
The filename_trans rule processing has some printk(KERN_ERR ) messages
which were intended as debug aids in creating the code but weren't removed
before it was submitted.  Remove them.

Reported-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Eric Paris <eparis@redhat.com>
security/selinux/ss/policydb.c

index e6e7ce0d3d5546a052f1e2a66568536e398c9c1a..7102457661d645cd499d770819ad92e3970f6831 100644 (file)
@@ -1819,8 +1819,6 @@ static int filename_trans_read(struct policydb *p, void *fp)
                goto out;
        nel = le32_to_cpu(buf[0]);
 
-       printk(KERN_ERR "%s: nel=%d\n", __func__, nel);
-
        last = p->filename_trans;
        while (last && last->next)
                last = last->next;
@@ -1857,8 +1855,6 @@ static int filename_trans_read(struct policydb *p, void *fp)
                        goto out;
                name[len] = 0;
 
-               printk(KERN_ERR "%s: ft=%p ft->name=%p ft->name=%s\n", __func__, ft, ft->name, ft->name);
-
                rc = next_entry(buf, fp, sizeof(u32) * 4);
                if (rc)
                        goto out;