Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
fe8e52b9
Commit
fe8e52b9
authored
8 years ago
by
Paul Moore
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audit: remove unnecessary curly braces from switch/case statements
Signed-off-by:
Paul Moore
<
paul@paul-moore.com
>
parent
ca86cad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
kernel/auditsc.c
kernel/auditsc.c
+12
-12
No files found.
kernel/auditsc.c
View file @
fe8e52b9
...
...
@@ -1221,7 +1221,7 @@ static void show_special(struct audit_context *context, int *call_panic)
context
->
ipc
.
perm_mode
);
}
break
;
}
case
AUDIT_MQ_OPEN
:
{
case
AUDIT_MQ_OPEN
:
audit_log_format
(
ab
,
"oflag=0x%x mode=%#ho mq_flags=0x%lx mq_maxmsg=%ld "
"mq_msgsize=%ld mq_curmsgs=%ld"
,
...
...
@@ -1230,8 +1230,8 @@ static void show_special(struct audit_context *context, int *call_panic)
context
->
mq_open
.
attr
.
mq_maxmsg
,
context
->
mq_open
.
attr
.
mq_msgsize
,
context
->
mq_open
.
attr
.
mq_curmsgs
);
break
;
}
case
AUDIT_MQ_SENDRECV
:
{
break
;
case
AUDIT_MQ_SENDRECV
:
audit_log_format
(
ab
,
"mqdes=%d msg_len=%zd msg_prio=%u "
"abs_timeout_sec=%ld abs_timeout_nsec=%ld"
,
...
...
@@ -1240,12 +1240,12 @@ static void show_special(struct audit_context *context, int *call_panic)
context
->
mq_sendrecv
.
msg_prio
,
context
->
mq_sendrecv
.
abs_timeout
.
tv_sec
,
context
->
mq_sendrecv
.
abs_timeout
.
tv_nsec
);
break
;
}
case
AUDIT_MQ_NOTIFY
:
{
break
;
case
AUDIT_MQ_NOTIFY
:
audit_log_format
(
ab
,
"mqdes=%d sigev_signo=%d"
,
context
->
mq_notify
.
mqdes
,
context
->
mq_notify
.
sigev_signo
);
break
;
}
break
;
case
AUDIT_MQ_GETSETATTR
:
{
struct
mq_attr
*
attr
=
&
context
->
mq_getsetattr
.
mqstat
;
audit_log_format
(
ab
,
...
...
@@ -1255,19 +1255,19 @@ static void show_special(struct audit_context *context, int *call_panic)
attr
->
mq_flags
,
attr
->
mq_maxmsg
,
attr
->
mq_msgsize
,
attr
->
mq_curmsgs
);
break
;
}
case
AUDIT_CAPSET
:
{
case
AUDIT_CAPSET
:
audit_log_format
(
ab
,
"pid=%d"
,
context
->
capset
.
pid
);
audit_log_cap
(
ab
,
"cap_pi"
,
&
context
->
capset
.
cap
.
inheritable
);
audit_log_cap
(
ab
,
"cap_pp"
,
&
context
->
capset
.
cap
.
permitted
);
audit_log_cap
(
ab
,
"cap_pe"
,
&
context
->
capset
.
cap
.
effective
);
break
;
}
case
AUDIT_MMAP
:
{
break
;
case
AUDIT_MMAP
:
audit_log_format
(
ab
,
"fd=%d flags=0x%x"
,
context
->
mmap
.
fd
,
context
->
mmap
.
flags
);
break
;
}
case
AUDIT_EXECVE
:
{
break
;
case
AUDIT_EXECVE
:
audit_log_execve_info
(
context
,
&
ab
);
break
;
}
break
;
case
AUDIT_KERN_MODULE
:
audit_log_format
(
ab
,
"name="
);
audit_log_untrustedstring
(
ab
,
context
->
module
.
name
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment