git: f815c5442538 - stable/14 - install: Explicitly include sys/param.h for MAXPATHLEN
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 14 Jul 2026 14:56:21 UTC
The branch stable/14 has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=f815c54425383a7d226cd1a104d403cf6d466026
commit f815c54425383a7d226cd1a104d403cf6d466026
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-06-22 20:19:29 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2026-07-14 14:08:41 +0000
install: Explicitly include sys/param.h for MAXPATHLEN
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
(cherry picked from commit ca89b0fa1a93744a5bbf7a5c949826bbee4e2559)
---
usr.bin/xinstall/xinstall.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index 68f8604d3438..d9e48ddada03 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -42,6 +42,7 @@ static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#endif /* not lint */
#endif
+#include <sys/param.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/wait.h>