aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/audit.c
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@mindspring.com>2007-05-08 03:29:20 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-08 14:15:09 -0400
commit039b6b3ed84e45a6f8316358dd2bfdc83d59fc45 (patch)
tree7d64edaeb2a67808742988dea3cccacecc1b17b8 /kernel/audit.c
parentb2bbe383ef7e792e92a5f53be955e71bd253ab32 (diff)
audit: add spaces on either side of case "..." operator.
Following the programming advice laid down in the gcc manual, make sure the case "..." operator has spaces on either side. According to: http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Case-Ranges.html#Case-Ranges: "Be careful: Write spaces around the ..., for otherwise it may be parsed wrong when you use it with integer values." Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r--kernel/audit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 4e9d20829681..d13276d41410 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -515,8 +515,8 @@ static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
515 err = -EPERM; 515 err = -EPERM;
516 break; 516 break;
517 case AUDIT_USER: 517 case AUDIT_USER:
518 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG: 518 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
519 case AUDIT_FIRST_USER_MSG2...AUDIT_LAST_USER_MSG2: 519 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
520 if (security_netlink_recv(skb, CAP_AUDIT_WRITE)) 520 if (security_netlink_recv(skb, CAP_AUDIT_WRITE))
521 err = -EPERM; 521 err = -EPERM;
522 break; 522 break;
@@ -614,8 +614,8 @@ static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
614 loginuid, sid); 614 loginuid, sid);
615 break; 615 break;
616 case AUDIT_USER: 616 case AUDIT_USER:
617 case AUDIT_FIRST_USER_MSG...AUDIT_LAST_USER_MSG: 617 case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
618 case AUDIT_FIRST_USER_MSG2...AUDIT_LAST_USER_MSG2: 618 case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
619 if (!audit_enabled && msg_type != AUDIT_USER_AVC) 619 if (!audit_enabled && msg_type != AUDIT_USER_AVC)
620 return 0; 620 return 0;
621 621