git: 418b4c2a80a2 - main - acl_to_text: include sys/param.h for MAXLOGNAME
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 15 Apr 2024 20:42:00 UTC
The branch main has been updated by brooks:
URL: https://cgit.FreeBSD.org/src/commit/?id=418b4c2a80a20ec41a1cdd227c321990a6a9711f
commit 418b4c2a80a20ec41a1cdd227c321990a6a9711f
Author: Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2024-04-15 16:54:53 +0000
Commit: Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2024-04-15 20:35:41 +0000
acl_to_text: include sys/param.h for MAXLOGNAME
Reviewed by: kib
Differential Revision: https://reviews.freebsd.org/D44474
---
lib/libc/posix1e/acl_to_text.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libc/posix1e/acl_to_text.c b/lib/libc/posix1e/acl_to_text.c
index f03ddeb79c09..c17253e2cec2 100644
--- a/lib/libc/posix1e/acl_to_text.c
+++ b/lib/libc/posix1e/acl_to_text.c
@@ -30,8 +30,8 @@
* in it.
*/
-#include <sys/types.h>
#include "namespace.h"
+#include <sys/param.h>
#include <sys/acl.h>
#include "un-namespace.h"
#include <sys/errno.h>