Date: Mon, 15 Apr 2024 20:42:00 GMT From: Brooks Davis <brooks@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 418b4c2a80a2 - main - acl_to_text: include sys/param.h for MAXLOGNAME Message-ID: <202404152042.43FKg0Iw043735@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404152042.43FKg0Iw043735>