mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 21:21:41 +00:00
audit: Use str_yes_no() helper function
Remove hard-coded strings by using the helper function str_yes_no(). Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
parent
2132b35526
commit
89282beaf7
@ -1653,8 +1653,8 @@ static void audit_log_uring(struct audit_context *ctx)
|
||||
audit_log_format(ab, "uring_op=%d", ctx->uring_op);
|
||||
if (ctx->return_valid != AUDITSC_INVALID)
|
||||
audit_log_format(ab, " success=%s exit=%ld",
|
||||
(ctx->return_valid == AUDITSC_SUCCESS ?
|
||||
"yes" : "no"),
|
||||
str_yes_no(ctx->return_valid ==
|
||||
AUDITSC_SUCCESS),
|
||||
ctx->return_code);
|
||||
audit_log_format(ab,
|
||||
" items=%d"
|
||||
@ -1696,8 +1696,8 @@ static void audit_log_exit(void)
|
||||
audit_log_format(ab, " per=%lx", context->personality);
|
||||
if (context->return_valid != AUDITSC_INVALID)
|
||||
audit_log_format(ab, " success=%s exit=%ld",
|
||||
(context->return_valid == AUDITSC_SUCCESS ?
|
||||
"yes" : "no"),
|
||||
str_yes_no(context->return_valid ==
|
||||
AUDITSC_SUCCESS),
|
||||
context->return_code);
|
||||
audit_log_format(ab,
|
||||
" a0=%lx a1=%lx a2=%lx a3=%lx items=%d",
|
||||
|
Loading…
Reference in New Issue
Block a user