30 lines
859 B
Diff
30 lines
859 B
Diff
From e97c79260a2e7bdbf02c5162b0c40451c9555111 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
|
|
Date: Tue, 31 Oct 2023 16:49:10 +0100
|
|
Subject: [PATCH] lib: enclose macro to avoid precedence issues
|
|
|
|
|
|
Reference:https://github.com/linux-audit/audit-userspace/commit/e97c79260a2e7bdbf02c5162b0c40451c9555111
|
|
Conflict:NA
|
|
|
|
---
|
|
lib/audit_logging.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/audit_logging.c b/lib/audit_logging.c
|
|
index 8b8b6207..e8b79d3e 100644
|
|
--- a/lib/audit_logging.c
|
|
+++ b/lib/audit_logging.c
|
|
@@ -38,7 +38,7 @@
|
|
#include "private.h"
|
|
|
|
#define TTY_PATH 32
|
|
-#define MAX_USER (UT_NAMESIZE * 2) + 8
|
|
+#define MAX_USER ((UT_NAMESIZE * 2) + 8)
|
|
|
|
// NOTE: The kernel fills in pid, uid, and loginuid of sender. Therefore,
|
|
// these routines do not need to send them.
|
|
--
|
|
2.33.0
|
|
|